Help for this page

Select Code to Download


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