Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

(jeffa) Re: Multiplication table

by jeffa (Bishop)
on Aug 02, 2003 at 14:35 UTC ( [id://280283]=note: print w/replies, xml ) Need Help??

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})
    ;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://280283]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-24 21:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found