Learning Perl Through Examples

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
File type : pdf
Downloads: 152
Created: 2018-05-28
Learning Perl Through Examples

Warning: Trying to access array offset on false in /home/tutovnfz/public_html/article.php on line 233

Others Perl Tutorials

Perl and LWP - Fetching web pages, Parsing HTML, Writing Spiders, & More

Using Perl 6

Think Perl 6: How to Think Like a Computer Scientist

Perl tutorial for beginners

Think Raku (Think Perl 6)

Others related eBooks about Learning Perl Through Examples

An Introduction to C & GUI Programming

Download free course An Introduction to C & GUI Programming, pdf file on 156 pages by by Simon Long....

You Don't Know JS Yet: Get Started

Download free course You Don't Know JS Yet: Get Started, pdf file on 143 pages by Kyle Simpson....

C Programming for Arduino

Physical computing allows us to build interactive physical systems by using software &..., download free C Programming tutorial in PDF (512 pages) created by Julien Bayle ....

Getting started with Fortran language

Download free Fortran tutorial course in PDF, training file in 14 chapters and 83 pages. Free unaffiliated ebook created from Stack OverFlow contributor....

Android Notes for Professionals

Download free course Android Notes for Professionals, pdf file on 1329 pages by by Stack Overflow Community....

Essential C++

This book written to provide clear and concise explanation of topics for programmers both starting to learn the C++ programming language as well as those diving in more complex topics. Most examples are linked to online playground that allows you to change the code and re-run it....

The C++ Hackers Guide

An experienced programmer accumulates a set of tools, tricks, and techniques to make his or her programs better. ...

Practical Foundations for Programming Languages

Download free course Practical Foundations for Programming Languages, pdf file on 590 pages by Robert Harper....

Real-Time ASP.NET Core 3 Apps with SignalR Succinctly

Download free course Real-Time ASP.NET Core 3 Apps with SignalR Succinctly, pdf file on 81 pages by Dirk Strauss....

Annotated Algorithms in Python: with Applications in Physics, Biology, and Finance

This book is assembled from lectures given by the author over a period of 10 years at the School of Computing of DePaul University. The lectures cover multiple classes, including Analysis and Design of Algorithms, Scientific Computing, Monte Carlo Simulations, and Parallel Algorithms. These lectur...