Next | Program Repair Shop | 195 |
Use expressions as boolean values
If you do have flag variables, name them so that this works:
if ($header_complete) { ... }
unless ($error_occurred) { ... }
Rather than this:
if ($header == 1) { ... }
if ($error_occurred == 0) { ... }
Next | Copyright © 2002 M. J. Dominus |