Help for this page

Select Code to Download


  1. or download this
    use diagnostics;
    
  2. or download this
    my @tableArray = (
         [ 1..COLS ],
    ...
         [ 1..COLS ],
         [ 1..COLS ]
    );
    
  3. or download this
    sub addToTable {
         foreach (@_) {
              print "$_\n";
         }
         print "elements passed " . scaler(@_) ."\n";