in reply to hash ref 101
my $param = @_; [download]
When you assign an array to a scalar, it gets the number of items in the array - not what you want. Try this instead:
my %param = @_; print $param{uno}, "\n"; [download]