Next | Program Repair Shop | 13 |
die $usage if (@ARGV == 0);
We can also get rid of the unnecessary parentheses:
die $usage if @ARGV == 0;
Beginners like to put these in
Because they are not sure about the precedence of the operators
Here, there is only one operator
Next | ![]() |
Copyright © 2006 M. J. Dominus |