4
votes
Is there any way to use a “constant” as hash key in Perl?
Use $hash{CONSTANT()} or $hash{+CONSTANT} to prevent the bareword quoting mechanism from kicking in.
From: http://perldoc.pe …
1
vote
sorting hashes/arrays in awk
Here's someone else's answer to a very similar problem:
http://www.computing.net/answers/uni …
