Help for this page

Select Code to Download


  1. or download this
    my $hi_mom = prefix_later(
       sub { my $f = shift(); print "got: $f\n"; },
    ...
    );
    
    $hi_mom->("nerp") for (1..3);
    
  2. or download this
    got: nerp
    this was unneccessary:
    got: nerp
    this was unneccessary:
    got: nerp