Help for this page

Select Code to Download


  1. or download this
    my $bar = "world";
    
    sub foo
    {
        while (@_) { $bar = shift; $params->{$bar} = shift; }
    
  2. or download this
    my $_;
    
  3. or download this
    local $_=whatever;
    
  4. or download this
    #!/usr/bin/perl -l
    
    ...
    foo for @q;
    
    __END__