Tags: perl5 Ähnliche Threads
123456789101112
sub my_function { # ... return (\@a, \@b, \@c);}my ($a, $b, $c) = my_function(); @a = @{$a};@b = @{$b};@c = @{$c};
@a = @$a;
my ($a, $b, $c) = my_function();
$a->[0]