Modern Perl: The (Draft) Book

chromatic on 2010-06-28T23:43:33

This took longer than I expected, but the draft of the Modern Perl book is available for review. I'm especially interested in hearing from people who don't consider themselves expert Perl 5 programmers. The goal of the book is to explain how Perl 5 works (and how to write Perl 5 effectively) to help novices become adepts.


Extra w00t!

xsawyerx on 2010-06-29T05:18:00

Amazing job!!

I'm looking forward to directing people to this book!

Explaining syntax

Ron Savage on 2010-07-01T23:24:02

Hi

In The Perl Philosophy, you have:

my @all_results = some_expensive_operation();

I thing you need an explicit statement (or a comment at the end of that line), saying that in Perl, '@' means all_results is an array.

It's only much later in the book that you explain this.