Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "\nAll the kids are out of the pool\n";
    
    exit 0;
    
  2. or download this
        next KID_IN_LINE if $lifeguard->start($kid) != 0;
    
  3. or download this
    $lifeguard->run_on_start(
        sub {
    ...
            print "\nThe lifeguard waves $kid into the pool\n";
        }
    );
    
  4. or download this
    $lifeguard->run_on_finish(
        sub {
    ...
            print "\n$kid climbs out of the pool\n";
        }
    );