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