RE: Manipulating complex structures...

2006-02-13 Thread Timothy Johnson
s arguments sub Tab{ my $indent = shift; my $text = shift; for(1..$indent){ print ' '; } print $text; } ###### -Original Message- From: Leonardo Mokarzel Falcon [mailto:[EMAIL PROTECTED] Sent: Mon

Manipulating complex structures...

2006-02-13 Thread Leonardo Mokarzel Falcon
# Hi fellows... # I would like to handle a structure like this one: $struct = { HASH1 => { hash1 => {A => "a", B => "b"}, hash2 => {C => "c", D => "d"}}, HASH2 => { hash3 => [1,2,3,4,5]} }; # How do I go/* */through it