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