home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / perl4036.zip / t / op / sleep.t < prev    next >
Text File  |  1993-02-08  |  173b  |  9 lines

  1. #!./perl
  2.  
  3. # $Header: sleep.t,v 4.0 91/03/20 01:54:34 lwall Locked $
  4.  
  5. print "1..1\n";
  6.  
  7. $x = sleep 2;
  8. if ($x >= 2 && $x <= 10) {print "ok 1\n";} else {print "not ok 1 $x\n";}
  9.