Sign in
go
/
website
/
4c8263311032e41afd73fd00478a93dac869e081
/
.
/
_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")
}