Beginning Perl |
Page 1 of 2 Author: Curtis “Ovid” Poe Ovid takes an interesting approach. He attempts to fill the gap between learning a language and actually applying that knowledge for landing a job. Most books on Perl teach the language itself, its constructs and how to use them, while the code examples and practical exercises re-enforce comprehension, but that can only take you so far. They do not address the questions, 'what do you do Sampling ads from the market reveals that a typical Perl job offer is web-centric and requires the candidates to have knowledge in: Modern relational database systems These skills make up the largest percentage of prerequisites, and that's the book's exact purpose; to show how to make a career out of programming in Perl.
The author attempts to provide for those who have not programmed before as well as those who are already programmers and want to learn Perl. Because of the level of disparity, trying to reconcile the learning style of these two groups might seem like a difficult task. A programmer already knows what a data type, an object, a subroutine, a while loop or a pointer are, and is more interested in the language's syntax rules, intricacies and the elements that make it worth committing to. The author not only suceeds in conveying the concepts to the absolute beginner but also manages to sustain the interest of the experienced programmer by providing him with plenty of reasons for trying out programming in Perl. In any case, both groups should start in common ground since no matter how experienced the programmer might be, This becomes even more severe when introduced to Perl; its
Chapter 1 starts with the history of the language, covers how to install the binary (with instructions for Linux, Windows and MacOS); how to look up the documentation; where to ask for help online, and ends with the classic "Hello World" example. Chapter 2 is a very detailed guide to CPAN; how to find, evaluate and install modules. The boxouts found almost on every page of the book, placed discreetly in a non obstructive to the main material way, hold extra valuable side notes with background information, advice, warnings and gotchas. It's from Chapter 3 onwards that we get into the language. It begins with very basic concepts, like what a variable is, what can be assigned to it, what the naming rules and valid identifiers are, Perl's data types (scalars, arrays, hashes) and how the notion of Context affects code's behavior. Comprehending the material of this chapter is absolutely essential for progressing to more advanced subjects. In order not to overload the beginner, it avoids introducing too much at once and instead defers getting into depth until the time is right. Saying for example: |
|||
Last Updated ( Thursday, 02 May 2013 ) |