- or download this
my $el;
while ($el = pop @els) {
# Body of loop
}
- or download this
sub while (BOOL $condition, &closure) {...}
sub if (BOOL $condition, &closure) {...}
- or download this
if condition(), &call_me;
- or download this
&debug := { if BEGIN{$debug}, &^action };
# and later...
debug { print "here" }