Sign in
go
/
website
/
06562a2885c91e4dae9e04d8bb9a796d02ee4527
/
.
/
_content
/
talks
/
2014
/
playground
/
sleep.go
blob: 6d6e2713dd49743936806ffe18f041dd94ad23c5 [
file
] [
log
] [
blame
]
// +build ignore,OMIT
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Good night")
time.Sleep(8 * time.Hour)
fmt.Println("Good morning")
}