Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: Perl programming : Getting started
Description: This is a tiny tutorial for The Perl programming language.

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


Powerful, stable, mature, portable
Perl 5 is a highly capable, feature-rich programming language with over 29 years
of development
...

"Perl" is a family of languages, "Perl 6" is part of the family, but it is a separate
language which has its own development team
...
from perl website

Getting started :
-After installing perl , you can start writing codes; let we write a simple
programme;(this tutorial is for linux users)
create a text file and name it "programme
...
pl > is very important;
write in the text file :

print " Welcome to my programme! \n";

Do not miss the < ; > at the end
...

Now open a terminal in the text file directory or use the command < cd > to
navigate to it , then run the command :

perl programme
...
pl>

Title: Perl programming : Getting started
Description: This is a tiny tutorial for The Perl programming language.