Help for this page

Select Code to Download


  1. or download this
    sub foo {
      my @foo = @{[@{$_[0]}]};
      # etc
    }
    
  2. or download this
    sub foo {
      my @foo = @{$_[0]};
      # etc
    }
    
  3. or download this
    my $bar = ["hello", "world"];
    foo($bar);
    ...
      # Try to mess up the first element.
      $foo[0] =~ s/h/H/;
    }