Help for this page

Select Code to Download


  1. or download this
    my $p = \@a;
    
  2. or download this
    my $p = [@a];
    
  3. or download this
    my @p = @a;
    
  4. or download this
    use strict;
    use warnings;
    ...
    print "array copy: ", Dumper \@copy;
    print "reference: ",  Dumper $ref;
    print "ref copy: ",   Dumper $refcopy;
    
  5. or download this
    foreach (@{$p}) { print "element $_\n"; }
    
  6. or download this
    print "element $_\n" for @$p;