Logo

Programming-Idioms

History of Idiom 45 > diff from v5 to v6

Edit summary for version 6 by :

Version 5

2015-08-20, 10:50:53

Version 6

2015-08-20, 17:09:51

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.

Imports
import core.thread;
Code
Thread.sleep(dur!"seconds"(5));