in reply to Re: hash ref 101
in thread hash ref 101

Also this way
hash( uno => 'one', dos => 'two', tres => 'three', ); sub hash { my $param = {@_}; print $param->{uno}, "\n"; }