in reply to Re: new to perl, syntax question
in thread new to perl, syntax question
I think better is to use the core module:
Another module that you have to install before being able to use it:use Data::Dumper; .... print Dumper \@name;
Basically, both of these modules can print/dump an arbitrary Perl data structure.use Data::Dump qw(pp); ..... print pp \@name;
|
|---|