Help for this page

Select Code to Download


  1. or download this
    # you're doing:
    return &Y::module_subroutine($hash_to_send);
    # should be:
    return &Y::module_subroutine(%hash_to_send);
    
  2. or download this
    # you're doing:
    my($hash) = @_;
    # should be:
    my %hash = @_;
    
  3. or download this
    # passing it in...
    return &Y::module_subroutine(\%hash_to_send);
    ...
    
    # and when using it in the sub, be sure to dereference...
    return "The colour of the sky is " . $hash->{third_colour};