in reply to Re: Visibility of Subroutines within modules,
in thread Visibility of Subroutines within modules,
(disregard the mispost above)
In reference to the hash declaration am I able to declare variables contained within the hash like
my %hidden = (
bar=>sub {
my $foo = shift;
print $foo;
}
);
Instead of using one line of code per entry?