Welcome to Perl and PerlMonks, Ookma-Kyi!

After some Googling I find that most of the suggested books are from 2010-2017 which leads me to believe the books are either old or Perl itself hasn't been updated in a long time.

Perl recieves a lot of updates - Perl 5.36 was released less than a year ago, and 5.38 is slated to come out this year. However, Perl 5 also places a large emphasis on backwards compatibility, so most of the material in older books still applies. Some best practices have evolved, so for example if you find code that looks like open FILE, ">$file" instead of open my $fh, ">", $file, then that's a good sign the example might be a little outdated, or especially if you find material that doesn't include a recommendation of use strict; use warnings;.

If you're only going to read one book, then I suggest Modern Perl. If you want to go deeper, then see threads like So what is your Perl book "Trilogy" anyway? and especially the links in eyepopslikeamosquito's reply will give you lots of good recommendations, and here's my take.

And of course you're always welcome to ask here!

My ultimate goal is to is use use the Perl equivalent of Django/Spring Framework/Ruby on Rails to create a browser based mmo game.

I personally like Mojolicious very much; after the above materials you can get started with Mojolicious::Guides::Tutorial.


In reply to Re: Beginner Recommendations by haukex
in thread Beginner Recommendations by Ookma-Kyi

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.