Help for this page

Select Code to Download


  1. or download this
    sub print2DArray {
      for my $i (0 .. $#_) {  
    ...
        print "\n";
      }
    }
    
  2. or download this
    sub print2DArray7 {
      for (@_) {  
    ...
        print "\n";
      }
    }