in reply to Re^2: Textview format, help please !
in thread Textview format, help please !
#!/usr/bin/perl use strict; use warnings; use Text::Table; my $tb = Text::Table->new( "ID", "DESCRIPTION", "QTY", "PRICE" ); $tb->load( [ "1 los", "LABOR ON PARTS", 1, '760.00' ], [ "2 sa", "STRIP", 1, '450.00' ], [ "3 av", "VALUE", 1, '2000.00' ], ); print $tb;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Textview format, help please !
by peokai (Novice) on Jul 22, 2010 at 12:07 UTC | |
by roboticus (Chancellor) on Jul 22, 2010 at 16:13 UTC |