Help for this page

Select Code to Download


  1. or download this
    $foo = sub {
         my $var = shift;
    ...
    for my $bar(@quux) {
        ...
    }
    
  2. or download this
    sub foo {
        my $ret  = bar($_[0]) * quux($_[1])
    }
    
  3. or download this
    sub foo {
        my $ret  = bar($_[0]) * quux($_[1])
        $ret    *= 1024
    }