RosettaCodeData/Task/Rate-counter/PicoLisp/rate-counter-1.l

9 lines
172 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
(prin "Hit a key ... ")
(key)
(prinl)
(let Usec (usec)
(prin "Hit another key ... ")
(key)
(prinl)
(prinl "This took " (format (- (usec) Usec) 6) " seconds") )