On Thursday, 7 May 2020 at 01:33:12 UTC, Daren Scot Wilson wrote:
   import core.thread: sleep;

It sould be

import core.thread : Thread;

Thread.sleep(1.secs); // or whatever

sleep is a static method on the Thread class.

Reply via email to