Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      print LOG (localtime).": something\n";
      sleep(30); # if I comment this, print works
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
      sleep(30);
    }
    close LOG or die "can't close log: $!";