NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Welcome to the community! (Score:1)
use strict;It's a good habit to get into. Spots many common errors and points them out to you, when you try to run the script. Even finds them before you try to run the script, if you use the "-c" option from the commandline. For example:
perl -c myscript.plFor even more information about possible trouble spots in your program, add this line, too (up towards the top somewhere):
use warnings;While you're learning, you'll get more verbose (explanatory) error messages if you use this line, too (up towards the top somewhere):
use diagnostics;What's your second script? :) Post it!
Reply to This