Logo

Programming-Idioms

History of Idiom 45 > diff from v8 to v9

Edit summary for version 9 by :

Version 8

2015-08-21, 09:14:32

Version 9

2015-08-21, 09:39:45

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;
Imports
import core.thread;
Code
Thread.sleep(dur!"seconds"(5));
Code
Thread.sleep(5.seconds);