Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
    } else {
            main();
    }
    
  2. or download this
    >perl alarmtest.pl
    Helper will die in 5 seconds
    helper: start of second 1
    ...
    Alarm clock
    
    >
    
  3. or download this
    sub helper
    {
    ...
                    print "helper: end of second $_\n";
            }
    }
    
  4. or download this
    >perl alarmtest.pl
    Helper will die in 5 seconds
    helper: start of second 1
    ...
    helper: end of second 10
    
    >