Help for this page

Select Code to Download


  1. or download this
    my $foo = 3;
    my $bar = "keyword mania";
    my @blivitz = "(some set of value);
    
  2. or download this
    my $bar = "keyword mania";
    ... (do something);
    ... (and something more);
    ...
        ...do something to the value in $bar (a global) with $foo (availab
    +le only in the sub);
        return (something);
    }