blob: 66ba0c6a34dd85901da24405db0a556045c71446 [file] [log] [blame]
// +build OMIT
package main
import ( "fmt"; "time" )
func main() {
for {
fmt.Println("Hello, Gophers!")
time.Sleep(time.Second)
}
}