Help for this page

Select Code to Download


  1. or download this
    sub array_fn {
        my @array = @{+shift};
        # ...
    }
    array_fn(\@foo);
    
  2. or download this
    sub array_fn (\@) {
        my $array = shift;
        # do things to @$array
    }
    array_fn(@foo);