- or download this
LINE: {
# ...
redo LINE if # ...
# ...
}
- or download this
my $done = 0;
# ...
sub {
...
}
return( $key, \@data ) if $allow;
return;
- or download this
while(
conditional
) {
code
}
- or download this
for(
init;
condition;
...
) {
code;
}
- or download this
init;
while(
contition
...
} continue {
cont;
}
- or download this
my $done= 0;
# ...
my( @data, $row, $key );
...
}
return( $key, \@data );
}