- or download this
use constant DEBUG => 0;
if (DEBUG) {
...
" when DEBUG is true.\n";
);
}
- or download this
macro num_max (x,y) {
((x) > (y) ? (x) : (y))
}
- or download this
print "You owe: \$", {% num_max $total-$paid, 0 %}, "\n";
- or download this
unless ($expression) { # include
... lines of code ...
...
} else { # include
... lines of code ...
} # include