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