- or download this
my @array = ('one','two','three');
## Results in:
|___0___|___1___|___2___|
| one | two | three |
- or download this
my %hash = (
'radiantmatrix' => '/home/2004/radiantmatrix/',
...
## results in
|_radiantmatrix____________|_somedude___________|
|/home/2004/radiantmatrix/ | /home/2009/somedude|
- or download this
my %hash = (
'radiantmatrix' => { home => '/home/2004/radiantmatrix/', phone =>
+'52123' },
'somedude' => { home => '/home/2009/somedude', phone => '52124
+' }
);