![]() |
|
more useful options | |
PerlMonks |
Re: passing subroutine arguments directly into a hashby kiseok7 (Beadle) |
on Oct 20, 2001 at 05:00 UTC ( #120187=note: print w/replies, xml ) | Need Help?? |
how about this way?
f(h=>1, s=>2, d=>3);
sub f {
my %hash = @_;
}
In Section
Seekers of Perl Wisdom
|
|