|
Hey,
Thanks for the compliments, and thoughts!
There is a dirty way to get what you want. If you turn on rowLines you could do this:
$t = new Text::ASCIITable({ drawRowLine => 1 });
$t->setCols("one",'two','three','four');
push @$t, (join("\n",( 1..2 ))) x 4;
push @$t, ( '3', '3', '3', '3' );
print $t;
Maybe I will make this easier in a future update. Probably soon.. It was an good idea as an addition :)
--
Håkon Nessjøen |