How to sleep
Sometimes when you a fooling around with some code, it would be nice if it just ran a bit slower or waited patiently for you - the user.
My languages support sleep
time.Sleep
is the Go equivalent.
time.Sleep(1 * time.Second)
Sometimes when you a fooling around with some code, it would be nice if it just ran a bit slower or waited patiently for you - the user.
My languages support sleep
time.Sleep
is the Go equivalent.
time.Sleep(1 * time.Second)