| TOC | Index | (Page 21 of 41)| Chapter: Print Statements | Gabor Szabo | |
| << Data::Dumper | End of print >> |
%h = (
first => 15,
second => '2nd',
array => [qw(one two three)],
);
print STDERR Dumper \%h;
$VAR1 = {
'array' => [
'one',
'two',
'three'
],
'first' => 15,
'second' => '2nd'
};