Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "this is partial line....";
    sleep (20);
    print "the rest of the story\n";
    
  2. or download this
    use strict;
    use warnings;
    ...
    print STDERR "starting another sleep\n";
    sleep(20);
    print STDERR "program ended\n";