Help for this page

Select Code to Download


  1. or download this
    my sub foo {
        # ...
    }
    
  2. or download this
    my $foo = sub { ... };
    
  3. or download this
    sub invert {
        my ($n, $p)=@_;
    ...
        }
        expp($n, $p-2);
    }