- or download this
my @values = f(...); # simple read,
# @values is a copy
- or download this
my %hash = f(...); # hash is also a copy
my $value = $hash{'value'};
- or download this
my (@v1, @v2) = f(...);
- or download this
sub f {
(...)
...
# notation cumbersome
# and avoid references