- or download this
multi_push(
\(@names, @ages, \@locs) =>
[split /::/, $record]
);
- or download this
sub multi_push{
my @v = @{ pop @_ };
my @fs = @_;
...
push @{ $f }, +shift @v;
}
}
- or download this
sub multi_push {
my @v = @{ pop @_ };
...
push @{ +shift }, +shift @v;
}
}