Perl is the most platform-agnostic language I've ever come across or heard about, with the remotely possible exception of a few FP languages like Haskell. It just works everywhere, from windows to *nix to mainframe to palm.

Now, learning an OS isn't that hard, either. Every OS has files, directories, a kernel, memory management, and other basic items. The only difference is in how you, the programmer, relates to them. Some, like the *nixen, tend to trust the developer a little more. Others, like the mainframe, tend to trust the developer a little less.

Me, I'd shoot for being comfortable on both *nix (which includes FreeBSD, Linux, and Solaris) and Windows. Mainframe is if you need it. I've programmed on nearly every *nix variant out there and, frankly, they're practically identical with respect to installing modules and programming stuff. Learn a shell, an editor, basic vi, and how to drive gcc. Beyond that, learn what you need to get your job done. Threading can be a bitch in various *nixen, so I tend to avoid threading. (Frankly, it's a bitch in most situations and you very very rarely will need the potential performance boost.)

Windows is more difficult. Learn how to use PPM and Notepad. Beyond that, get used to frustration because AS perl is not exactly the same as regular Perl. It's close, but has a few differences, particularly in performance of fork and how terminals are emulated when done through select.

perldoc perlport is your friend, here.


My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?

In reply to Re: Effect of OS Platform choice for learning and doing Perl well by dragonchild
in thread Effect of OS Platform choice for learning and doing Perl well by Anonymous Monk

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.