Help for this page

Select Code to Download


  1. or download this
    sub foo {
       my ($x) = @_;
    ...
    
    foo('a');
    foo('b');
    
  2. or download this
    Variable "$x" will not stay shared at (re_eval 1) line 2.
    a
    a
    
  3. or download this
       local our @common_letters;
       local our @wordsCopy = @words;