Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: 101 reasons to use strict;

by dragonchild (Archbishop)
on Oct 01, 2001 at 16:50 UTC ( [id://115843]=note: print w/replies, xml ) Need Help??


in reply to 101 reasons to use strict;

  1. If you don't use strict, we won't want to help you.
  2. If you still don't use strict, we will NOT help you.
  3. It will catch mispelled variable names.
  4. It will catch missing '$', '@', '%', and '&'.
  5. It will force you to actually know what variables you're using.
  6. It will not let you use local unless you specifically say you want to. (Instead, you have to use our to scope globals.)
  7. It will prevent variable-clobbering due to scope changes. (You still shouldn't use the same variable name in different scopes, but this helps even if you're silly.)
  8. It will help you program better.
  9. It elevates Perl from the level of shell-scripting to the level of a true application.
  10. It makes maintenance of Perl applications possible. (I'm not exaggerating about this one.)
  11. And, the most important reason is "Because I said so."

------
We are the carpenters and bricklayers of the Information Age.

Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://115843]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-24 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found