Download tutorial intituled Learning Perl Through Examples, it's a free training document under 72 pages by Yun Shen.
Table of contents
- Background
- What Is Perl
- Language Design Philosophy
- Perl Classification
- Borrowed Features
- Authentic Features
- Where Perl is used
- Major versions
- Language Scope
- Language Elements
- Advantage Over C
- Disadvantage Over C
- Some famous applications
- Get to know Perl Environment
- Connecting to SCC
- Download source code
- Exercise 1 - Where is My Perl
- What do we learn from Exercise 1
- Exercise 2 – Perl Program Structure
- Exercise 2 – Check Source Code
- What do we learn from Exercise 2
- Using Perl
- Command line Option Explained
- Command line Examples
- Good Programming Practices
- Variable Scope Example 1
- Code Examples
- Packages and Modules
- Perl help system
- Perl Debugger
- Q & A
Generalities about Perl
Perl is a programming language for text file processing as well as system and application administration tasks. Available in the public domain for Unix environments, Linux, Windows ... it knows today a very important development.
Created in 1986 by Larry Wall, Perl has since known many versions, today we use Perl5, version 5.61 is now final.
Perl is an interpreted language and Perl programs are distributed in source format. The interpreted term is however ambiguous because a Perl program runs in two phases:
the pre-compilation of the program that produces pseudo-code, then the interpretation of the pseudo-code (the actual execution). The pseudo-code of Perl contains more than 300 meta-instructions, at the end of the pre-compilation one obtains a sequence of autonomous pseudo-codes which have pointers towards their operands and the following meta-instruction. Perl is very referenced on the Web, among the main sites are:
- http://www.perl.org (all about Perl)
- http://www.perl.com (all about Perl also)
- http://www.cpan.org (distribution of Perl and modules)
Size : | 1047.842 Kb |
Downloads: | 152 |
Created: | 2018-05-28 |
Warning: Trying to access array offset on false in /home/tutovnfz/public_html/amp/article-amp.php on line 263
Others related eBooks about Learning Perl Through Examples
Download a free course in PDF about Perl programming language, a complet training document under 120 pages by Geoffrey Sampson.
Download free Perl tutorial course in PDF, training file in 39 chapters and 109 pages. Free unaffiliated ebook created from Stack OverFlow contributor.
This book is primarily for people who want to learn Perl 6. It teaches the basics from a Perl 6 perspective, touching on variable interpolation, datastructure use, object construction, threads, closures, symbol tables, and other core features. It then introduces continuations, coroutines, binding (o
Want to learn how to program and think like a computer scientist? This practical guide get..., download free Perl 6 tutorial in PDF (466 pages) created by Laurent Rosenfeld .
Modern Perl is one way to describe how experienced and effective Perl 5 programmers work. They use language idioms. They take advantage of the CPAN. They're recognizably Perlish, and they show good taste and craftsmanship and a full understanding of Perl.