Help for this page

Select Code to Download


  1. or download this
    # Takes a number of columns then a list.  Reformats the list into
    # an array of arrays, with the original elements sorted down by
    ...
      }
      return @ret;
    }
    
  2. or download this
    foreach my $row (reformat_major_minor(3, @cells)) {
      print "<tr>\n", (map "  <td>$_</td>\n", @$row), "</tr>\n";
    }
    
  3. or download this
    # Takes a number of columns then a list.  Reformats the list into
    # an array of arrays, with the original elements sorted down by
    ...
      }
      return @ret;
    }