Skip to content

Instantly share code, notes, and snippets.

@zaru
Created December 23, 2019 09:07
Show Gist options
  • Save zaru/6ccb7d1c1294b6c5f0ff0729dd20ef27 to your computer and use it in GitHub Desktop.
Save zaru/6ccb7d1c1294b6c5f0ff0729dd20ef27 to your computer and use it in GitHub Desktop.
Go sleep
package main
import (
"log"
"time"
)
func main() {
log.Print("Start")
time.Sleep(11 * time.Second)
log.Print("End")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment