$> ls -l
-rwrw-rw- 1 db0   db0 62.1 Ko 2015-03-30 19:37 Impatient C
-rwrw-rw- 1 db0   db0  3.5 Ko 2015-03-30 19:37 Impatient SCM
-rwrw-rw- 1 db0   db0  3.0 Ko 2015-03-30 19:37 Impatient Emacs
-rwrw-rw- 1 db0   db0  2.4 Ko 2015-03-30 19:37 Impatient Man Pages
-rwrw-rw- 1 db0   db0 10.5 Ko 2015-03-30 19:37 Impatient Perl
-rwrw-rw- 1 db0   db0 17.3 Ko 2015-03-30 19:37 Impatient Python
-rwrw-rw- 1 db0   db0 13.6 Ko 2015-03-30 19:37 Impatient Shell Debutant
-rwrw-rw- 1 db0   db0 16.4 Ko 2015-03-30 19:37 Impatient Shell Script
-rwrw-rw- 1 db0   db0  3.4 Ko 2015-03-30 19:37 Impatient Shell
-rwrw-rw- 1 db0   db0  1.8 Ko 2015-03-30 19:37 Impatient Vim


Impatient Perl

Sommaire

  1. Particularites
  2. Le fichier
  3. Les types de variables
  4. Utilisation de variables
  5. Variables particulieres
  6. Operateurs et mots-cles
  7. Les fonctions
  8. Exemple
  9. Manipulation de fichiers

Particularites

Le fichier

Les types de variables

Utilisation de variables

Variables particulieres

Operateurs et mots-cles

Les fonctions

Exemple


  my $variable_trop_cool = 0;
  
  &une_super_fonction($variable_trop_cool);
  
  sub une_super_fonction
  {
    while ($_ < 6)
    {
        if ($_ == 0)
        {
            print  "je suis dans le if\n";
        }
        elsif ($_ == 1)
        {
            print  "je suis dans le elsif\n";
        }
        elsif ($_ == 2)
        {
            $_ += 2;
            next;
        }
        else
        {
            print  "je suis dans le else\n";
        }
        unless ($_ > 3)
        {
            print "je ne suis pas superieur a 3\n";
        }
        print $_." prochain tour de boucle\n";
        $_++;
    }
  }
  

Manipulation de fichiers

Commentaires | Ajouter un commentaire