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