Logo

Programming-Idioms

History of Idiom 45 > diff from v31 to v32

Edit summary for version 32 by :
New Clojure implementation by user [pgon101a]

Version 31

2016-02-16, 21:40:15

Version 32

2016-02-17, 13:44:57

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Code
(Thread/sleep 5000)