And in case the replies above haven't convinced you... I've been using perl for 15 years; I've been including "use strict" for more than half of that time.

Adding it to my normal habit has made me a better programmer, because it causes me to think about the constraints it imposes while I am writing code (especially the required scope for variables). And as mentioned above, it also makes it easier and quicker to get my code to work as intended, because it catches mistakes that might otherwise be hard to spot.

The only time I don't use it is when I am doing spontaneous one-liners at the shell command line, because in that situation, compactness carries greater value, and the code I need is relatively short and simple (requiring few if any variables). But every script that I store as a file has "use strict" in it.


In reply to Re^3: counting number of occurrences of words in a file by graff
in thread counting number of occurrences of words in a file by derpp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.