in reply to Hash of Hash of Listed subroutines
...I'm suspecting that there is a problem in the manner that I am calling the subroutine.Yep. If you rename that $i variable to $subref, it will become apparent what you can do next.
(P.S. -- whitespace good. :-)for my $key ( %HoL ) { for my $subref ( @{ $HoL{$key} } ) { print "$key -> ", &{$subref}, "\n"; } }
jdporter
The 6th Rule of Perl Club is -- There is no Rule #6.
|
|---|