What I meant to say, was what's the next important thing to learn after you have grasped the basics. I recommend:
  1. perldoc perlfunc -- memorize function names, and roughly what they do
  2. perldoc -f <function> -- memorize the usage of this command. It will give you the details on a function, without having to search through perlfunc for it. This assumes you can remember the function name (see step 1).
  3. If you haven't already, read about good programming style for block structured programming (in any language). Discipline yourself in good practice. Learn how to break huge functions down into managable functions, learn to document your functions as you write them, learn to take the time to choose good variable names. Teach yourself to code for maintainability.
  4. Read books on testing, and specifically, how to write programs that are easy to test. Programs that are clearly correct are easier to maintain than programs where even the original programmer got confused about what's going on...
  5. Once you can write good programs, learn to write good perl programs. Master perl idioms, learn what they mean, and what the tradeoffs of using each one are. Learn regular expressions, how to use them, how not to use them, and when to document them (ie. always)
  6. Learn what CPAN modules are out there: this is not a static task. Learn perl XS if you like. Learn about closures, symbol table manipulations, and start filling in the corners of your perl knowledge.
  7. Learn everything. If you succeed, tell me how. :-)

--
AC

In reply to Re^3: What's the most important thing to learn in the Perl world? by Anonymous Monk
in thread What's the most important thing to learn in the Perl world? by ghenry

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.