- or download this
$cellname = 'fred';
$hashCellname{$cellname}++;
local $, = ' ';
print %hashCellname,"\n";
- or download this
fred 1
- or download this
use strict;
use warnings;
- or download this
use strict;
use warnings;
...
local $, = ' ';
print %hashCellname,"\n";