in reply to
Array of Hashes
You need to change the subroutine prototype from
sub Bounce ($) { ... }
[download]
into
sub Bounce (@) { ... }
[download]
or (better) don't use prototypes at all.
Comment on
Re: Array of Hashes
Select
or
Download
Code
In Section
Seekers of Perl Wisdom