Help for this page
sub my_func { my $params = shift; ... # "Error: Not a Hash reference" my_func( message => "Hello, world!" );
sub my_func { my %params; ... # also good my_func( message => "Hello, world!" );