Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    print "after:\n";
    foreach (@{$p}) { print "element $_\n"; }
    
  2. or download this
    my $p = \@a;
    
  3. or download this
    my $p = [@a];