in reply to Document with Graphics
Produces:my %data = ( first => 12, second => 45, third => 27 ); foreach my $bit ( keys %data ) { print "$bit:\t", '-' x $data{$bit}, " $data{$bit}\n"; }
It may not be perty but it is fast, flexible and portable.first: ------------ 12 second: --------------------------------------------- 45 third: --------------------------- 27
--tidiness is the memory loss of environmental mnemonics
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Document with Graphics
by Fletch (Bishop) on Mar 25, 2004 at 15:09 UTC | |
by EvdB (Deacon) on Mar 25, 2004 at 15:40 UTC |