- or download this
use strict ;
use warnings ;
...
) ;
print Dumper(%h) ;
- or download this
$VAR1 = 'b';
$VAR2 = [
...
];
$VAR3 = 'a';
$VAR4 = 1;
- or download this
use strict ;
use warnings ;
...
b => [ 1, 2, 3],
) ;
print Dumper(\%h) ; # Note the additional \
- or download this
$VAR1 = {
'b' => [
...
],
'a' => 1
};