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