- or download this
%var - Hash
$var{$key} - Hash element
$var - Scalar. No relation to %var
- or download this
return &Y::module_subroutine($hash_to_send);
...
return "The colour of the sky is ".
$hash{third_colour};
}
- or download this
return &Y::module_subroutine(%hash_to_send); <--- Use the right var
...
return "The colour of the sky is ".
$hash{third_colour};
}
- or download this
return &Y::module_subroutine(\%hash_to_send); <--- Pass reference
...
return "The colour of the sky is ".
$hash->{third_colour}; <--- Must dereference
}