in reply to Complicated Nested Data Structures
I'm not sure I understand the question. Do you want to print the datastructure itself, or the data it contains? If you want to print a representation of the datastructure, use Data::Dumper:
use Data::Dumper; my $structure = [ 'complex', { data => 'structure' } ]; print Dumper($structure);
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: Re: Complicated Nested Data Structures
by elusion (Curate) on Aug 09, 2000 at 06:13 UTC | |
by jlp (Friar) on Aug 09, 2000 at 06:41 UTC |
In Section
Seekers of Perl Wisdom