I have tried:
$var = false;
$var = FALSE;
$var = False;
None of these work. I get the error message
Bareword "false" not allowed while "strict subs" is in use.
|
|
In Perl, the following evaluate to false in conditionals:
The rest are true. There are no barewords for |
|||||||||||||||||||||
|
|
Perl doesn't have a native boolean type, but you can use comparison of integers or strings in order to get the same behavior. Alan's example is a nice way of doing that using comparison of integers. Here's an example
One thing that I've done in some of my programs is added the same behavior using a constant:
The lines marked in "use constant" define a constant named true that always evaluates to 1, and a constant named false that always evaluates by 0. Because of the way that constants are defined in Perl, the following lines of code fails as well:
The error message should say something like "Can't modify constant in scalar assignment." I saw that in one of the comments you asked about comparing strings. You should know that because Perl combines strings and numeric types in scalar variables, you have different syntax for comparing strings and numbers:
The difference between these operators is a very common source of confusion in Perl. |
|||||||||||||
|
|
The most complete and most concise answer I've come across is: Anything that stringifies to the empty string or the string `0` is false. Everything else is true. Therefore, the following values are false:
Keep in mind that an empty list literal evaluates to an undefined value in scalar context, so it evaluates to something false. |
|||||
|
|
I recommend |
|||
|
|