Created
December 23, 2019 09:07
-
-
Save zaru/6ccb7d1c1294b6c5f0ff0729dd20ef27 to your computer and use it in GitHub Desktop.
Go sleep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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