Changeset 189


Ignore:
Timestamp:
09/18/08 23:26:27 (16 years ago)
Author:
nanardon
Message:
  • various fix point during talk
Location:
trunk/perl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/perl/perl.syntaxe.tex

    r188 r189  
    134134    print "$i\n"; 
    135135    $i++; 
    136 } while($i < 100; 
     136} while($i < 100); 
    137137\end{verbatim} 
    138138\end{exampleblock} 
  • trunk/perl/perl.variables.tex

    r183 r189  
    166166\begin{exampleblock}{Utiliser tableau de hashage:} 
    167167\begin{verbatim} 
    168 %hash = ( foo => "un" 
    169           bar => 2 ); 
     168%hash = ( foo => "un", 
     169          bar => 2, ); 
    170170print $hash{'bar'}; 
    171171$clef = 'clef'; $hash{$clef}; 
Note: See TracChangeset for help on using the changeset viewer.