vote up 3 vote down star
2

I'm an experienced programmer but I haven't tried using Perl before. Can anyone please give me a link to a good tutorial of the Perl language? Thank you very much.

flag

11 Answers

vote up 6 vote down

The Llama book is really unsurpassed.

link|flag
2  
I want to add the Camel book too; that's actually how I learnt Perl. – Chris Jester-Young Jun 11 at 2:09
1  
Me too (back in perl 4 times) but I wouldn't call it "a tutorial" -- maybe just a semantic quibble (it is a great book, though, you're right!). – Alex Martelli Jun 11 at 2:19
I personally feel the Llama book is too simple for an experienced programmer. – Ryan Jun 11 at 2:41
vote up 6 vote down

I believe that the Camel book is the de facto standard Perl book. From the description

Programming Perl is not just a book about Perl; it is also a unique introduction to the language and its culture, as one might expect only from its authors.

link|flag
1  
The camel book is a bit dated now. Perl is 10 years past it. – brian d foy Jun 11 at 12:05
vote up 0 vote down

Rex Swain's HTMLified Perl 5 Reference Guide is great for reference. And there's the official Perl documentation, with links to tutorials, etc.

link|flag
vote up 0 vote down

I really like this site for an online reference/tutorial:

http://www.steve.gb.com/perl/

The actual tutorial is here:

http://www.steve.gb.com/perl/tutorial.html

link|flag
vote up 3 vote down

perldoc.perl.org is the best language reference site for any language that I know of. It includes tutorials, FAQs and the complete language reference and man pages. CPAN is the source for modules and Perl Monks is the community site.

link|flag
vote up 1 vote down

Learn Perl has some resources. Perl has an excellent community. Checkout The Monsastery Gates.

Also, do not forget to read perldoc perlintro.

Happy Perl-ing. :-)

link|flag
vote up 0 vote down

Picking Up Perl was my introduction to Perl. I did buy pretty much every decent Perl book in the intervening years, but that tutorial is how I got started. It helped me make sense of the big picture while reading Learning Perl.

link|flag
vote up 2 vote down

Leaning Perl the Hard Way is one of my favorites! (GFDL :)

From the book:

Do we really need another Perl book? Well obviously I think so, and here's why:

  • I want a book for people who already know how to program in another language, but don't know Perl.

  • I want a book that gets through the basics as quickly as possible.

  • I want a book that emphasizes good programming style in Perl.

  • I wanted to bring [OOP] closer to the center of focus.

link|flag
vote up 0 vote down

Personally, I would recommend installing ActiveState Perl on your local windows box if you have one. The HTML help docs are great and when you use their PPM perl module installer it installs docs for that module into the same HTML doc. Very handy.

As a side note, as a multi-language programmer that now uses Perl - avoid the temptation to use some of the bizarre non-intuitive Perl syntax "just because you can do it in Perl". Specifically the practice of using "inferred" variables, like "@_". Stick to rational programming practices and variable naming conventions to make your code understandible even to other coders that do not know Perl.

Ron

link|flag
vote up 1 vote down

Do like every other Perl programmer before you has done.

Programming Perl

It truly is worth reading '''cover to cover'''.

After that, go to http://search.cpan.org/recent daily and look through the source code of the absolute latest Perl module releases.

link|flag
vote up 0 vote down

try http://www.perlhome.com

link|flag
Please expand upon this answer. – Brad Gilbert Sep 14 at 19:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.