- or download this
sub do_stuff1 {
local $_ = shift;
chomp;
say;
}
- or download this
sub do_stuff1 {
${ local *_ } = shift;
chomp;
say;
}
- or download this
for (..., $tied, ...) {
...
do_stuff1(...);
...
}
- or download this
for (..., substr($s, ...), ...) {
...
do_stuff1(...);
...
}