Help for this page

Select Code to Download


  1. or download this
    my ($self, @$objs) = @_;
  2. or download this
    # (1) call with a reference to an array
    my $ref = [1,2,3];
    foo(1,$ref);
    ...
      # @array is already a copy
      $array[0] = 3;
    }