Help for this page
my $hello_ref = sub { print "Hello!\n"; }; $pm->run_on_finish($hello_ref);
sub hello { print "Hello!\n"; } $pm->run_on_finish(\&hello);