Help for this page

Select Code to Download


  1. or download this
    package Before;
    use Acme::Damn;
    ...
            };
        };
    1;
    
  2. or download this
    $ perl -MBefore -e 'my $foo = bless(sub { print shift()."\n" } => 'Bef
    +ore'); $foo->("foo"); $foo->("bar")'
    Stuff before
    foo
    Stuff before
    bar