Logo

Programming-Idioms

History of Idiom 45 > diff from v30 to v31

Edit summary for version 31 by :
New Scala implementation by user [meshelton]

Version 30

2016-02-16, 17:59:47

Version 31

2016-02-16, 21:40:15

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)