in reply to passing lexical filehandles
is more idiomatically written:foreach (in $root) { my $thing = $_;
or more commonly:foreach my $thing (in $root) {
for my $thing (in $root) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: passing lexical filehandles
by girarde (Hermit) on Jan 16, 2014 at 20:04 UTC |