- or download this
{
one => [ [ 1, 2 ], 3 ];
...
}
- or download this
{
one => [ [ [ 1, 2 ], 3 ], 4 ];
...
}
- or download this
{
one => '1 2 3 4',
...
}
- or download this
#!/usr/bin/perl -w
use strict;
...
$h1{ $x } .= ' ' . $h2{ $x };
}
print Dumper (\%h1);
- or download this
#!/usr/bin/perl -w
use strict;
...
$h1{ $x } .= $; . $h2{ $x };
}
print Dumper (\%h1);