- or download this
#!/usr/bin/perl
...
$hash_to_send{third_colour} = "blue";
return &Y::module_subroutine($hash_to_send);
- or download this
#!/usr/bin/perl
package Y;
...
my($hash) = @_;
return "The colour of the sky is ".$hash{third_colour};
}
- or download this
return &Y::module_subroutine(\$hash_to_send);