RosettaCodeData/Task/Rate-counter/PicoLisp/rate-counter-1.l
2023-07-01 13:44:08 -04:00

8 lines
172 B
Text

(prin "Hit a key ... ")
(key)
(prinl)
(let Usec (usec)
(prin "Hit another key ... ")
(key)
(prinl)
(prinl "This took " (format (- (usec) Usec) 6) " seconds") )