{
some_statement;
some_statement;
some_statement;
}
| Element | Truth |
|---|---|
| 0, "0", or anything that computes to 0 or "0" | False |
| undef, or anything that computes to undef | False |
| "", or anything that computes to "" | False |
| Everything Else | True |
| "00" (string of two zeros) | True (it is not a single 0 after all) |
| "0.0" | True (again, it is not a single 0 after all) |