Help for this page

Select Code to Download


  1. or download this
    my $hello_ref = sub { print "Hello!\n"; };
    $pm->run_on_finish($hello_ref);
    
  2. or download this
    sub hello { print "Hello!\n"; }
    $pm->run_on_finish(\&hello);