in reply to Re: a HASH ref while "strict refs" ERROR
in thread a HASH ref while "strict refs" ERROR
sub higherLevel { my(@arr) = @_; showArray(@arr); } sub showArray { my(@arr) = @_; foreach my $temp (@arr) { print "$temp\n"; } } my(@arr) = ("one","two","three"); higherLevel(@arr);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: a HASH ref while "strict refs" ERROR
by ikegami (Patriarch) on May 04, 2005 at 19:27 UTC |