Perl Primer

Most of the control structure we will see in this chapter test if a condition is true or false. For programmers, “truth” is easier to define in terms of what is not truth! In Python, there is a short, specific list of false values: An empty string, “ “, is false. The number zero and the string “0” are both false. An empty list ... ................
................