home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch4 / times < prev    next >
Encoding:
Text File  |  1992-10-18  |  161 b   |  7 lines

  1. ($user, $system, $cuser, $csystem) = times;
  2.  
  3. $start = (times)[0]; # presumes $[ = 0
  4. ...
  5. $end = (times)[0];
  6. printf "that took %.2f CPU seconds\n", $end - $start;
  7.