Help for this page

Select Code to Download


  1. or download this
    my $a;
    my @b = @$a;
    
  2. or download this
    my $a;
    foreach (@$a) {
      print "$_\n";
    }