- or download this
my %hash;
$hash{beta} = 'x';
...
use Data::Dumper;
print Dumper \%hash;
- or download this
$VAR1 = {
'alpha' => [
...
],
'beta' => 'x'
};
- or download this
print Dumper \@x;
- or download this
$VAR1 = [
123,
456
];
- or download this
use strict;
- or download this
Can't use string ("x") as an ARRAY ref while "strict refs" in use at t
+est.pl line 6.