Sign in
go
/
talks
/
456b5fca3a73edb41339aa18660233f6ded56b9a
/
.
/
2012
/
insidepresent
/
hello.go
blob: 66ba0c6a34dd85901da24405db0a556045c71446 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import ( "fmt"; "time" )
func main() {
for {
fmt.Println("Hello, Gophers!")
time.Sleep(time.Second)
}
}