- or download this
#!/usr/bin/env perl
...
print Dumper \%hash;
print Dumper \%hash2;
- or download this
$ cat DATA_F.dat
1 one
2 two
3 three
- or download this
$VAR1 = {
'2' => 'two',
...
'1' => 'one',
'2' => 'two'
};
- or download this
$ cat DATA_F2.dat
1 a
...
24 x
25 y
26 z
- or download this
$VAR1 = {
'13' => 'm',
...
'22' => 'v',
'1' => 'a'
};