- or download this
use strict;
use warnings;
...
}
print Dumper($x);
- or download this
Global symbol "$i" requires explicit package name at noname.pl line 5.
Global symbol "$i" requires explicit package name at noname.pl line 5.
...
Global symbol "$i" requires explicit package name at noname.pl line 6.
Global symbol "$x" requires explicit package name at noname.pl line 10
+.
Execution of noname.pl aborted due to compilation errors.
- or download this
use strict;
use warnings;
...
}
print Dumper (\%x);
- or download this
#1/ Perl for loop:
my %x;
...
#4/ hash slice and x operator:
@x{0 .. 4} = ('x') x 5;