Help for this page

Select Code to Download


  1. or download this
    sub get_table {
       my $max = $_[0] - 1;
    ...
       }
       return @table;
    }
    
  2. or download this
    use Text::Table;
    
    ...
    my $text_table = Text::Table->new(1..$max);
    $text_table->load(@table);
    print $text_table->body;
    
  3. or download this
    use DBIx::XHTML_Table;
    
    ...
       ->new([get_table($max)],[])
       ->output({no_head=>1})
    ;