http://qs321.pair.com?node_id=1186558


in reply to Re: Beginning Perl or Learning Perl?
in thread Beginning Perl or Learning Perl?

Although I obviously agree (++) about the Camel book (Programming Perl), a truly excellent book and a "must have" at some point, I beg to disagree with the recommendation. First, the Camel book is a reference book, not really a book for beginners (even though there is a real pedagogical effort in it).

And then, even if you have the Camel book, it's really good to use several books, written by different authors or at least for different audiences or purposes, because it gives you the chance to see different ways of doing things. Where different good books do things the same way, you probably have a good practice; where they differ, you probably witness a case of TIMTOWTDI. In both case, you learn something useful.

In the longer run, I would probably recommend half a dozen books or even more.

Replies are listed 'Best First'.
Re^3: Beginning Perl or Learning Perl?
by shmem (Chancellor) on Mar 30, 2017 at 22:36 UTC

    It's really a matter of taste, and what kind of person you are, and what your preferred way of learning is. If you have a strong historical way of viewing the world, then you'd start with the pink edition of "Programming Perl" and work on from there. You could also just read all of the vast perl manual pages; let it settle, rumiate; re-read; then start programming (that's purportedly the way Abigail did it) . If you are a cook, get the "Perl Cookbook", fry the recipes (and yourself) and discover the different onions later, as you develope taste.

    There are so many ways to learn, and several might be your own. How can anybody tell for sure which one, to a complete unknown? So every suggestion is to be taken with a grain of salt (and for my taste with a good pinch of chili).

    perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'
      ou could also just read all of the vast perl manual pages; let it settle, rumiate; re-read; then start programming (that's purportedly the way Abigail did it)

      That's also the way I did it, but with lots of testing with snippets along the way. Although way back then there was only 1 perl manpage and it stretched to over 100 pages of 11x14. Simpler times. Possibly the split into the multiple manpages has produced an even steeper initial learning curve which eventually becomes more flat but fewer will be encouraged to reach that gentle upland. I wouldn't encourage learning from the perl manpages today.