in reply to Re: hash ref 101in thread hash ref 101
hash( uno => 'one', dos => 'two', tres => 'three', ); sub hash { my $param = {@_}; print $param->{uno}, "\n"; } [download]