in reply to Re^2: Why my variable is not 0 ?
in thread Why my variable is not 0 ?

Hello pcouderc,

My conclusion is that false is not always 0...

No, indeed. The definition of false in Perl is given in perlsyn#Truth-and-Falsehood:

The number 0, the strings '0' and "", the empty list (), and undef are all false in a boolean context. All other values are true. Negation of a true value by ! or not returns a special false value. When evaluated as a string it is treated as "", but as a number, it is treated as 0. Most Perl operators that return true or false behave this way.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^4: Why my variable is not 0?
by pcouderc (Monk) on Jan 08, 2016 at 15:34 UTC
    Yes, it does... Thank you !