in reply to Re: Unique key identifer?
in thread Unique key identifer?
my %strands = ( '+' => \%plus, '-' => \%minus );
as a side note, I'd prefer
print "Positives are : ", join (', ', keys %plus), "\n";
instead of map :)
Cheers Rolf
(addicted to the Perl Programming Language)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Unique key identifer?
by Laurent_R (Canon) on Jun 27, 2014 at 23:00 UTC | |
by roboticus (Chancellor) on Jun 28, 2014 at 00:21 UTC | |
by Jim (Curate) on Jun 29, 2014 at 04:06 UTC | |
by Laurent_R (Canon) on Jun 29, 2014 at 15:33 UTC |