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 …
4
votes
What should I teach a beginning Perl programmer?
That's basically a task-oriented question.
If they are to use it for parsing, show them how easy manipulating STDIN and file i/o is.
If they are going to use it for databases, show …
4
votes
How can a Perl script know its own memory footprint?
This will show you how:
http://perldoc.perl.org/Devel/Peek.html
Also, …
