- or download this
&viewThumbnails(\@array1, \@array2);
...
my ($firstset, $secondset) = @_;
# do something with these arrayrefs
}
- or download this
my ($zero, $one, $two) = @_;
- or download this
my $zero = @_[0];
my $one = @_[1];
my $two = @_[2];
- or download this
my $firstarg = shift;