wide/hello/main.go

15 lines
125 B
Go
Raw Normal View History

2014-11-19 08:31:17 +03:00
package main
import (
"fmt"
"time"
)
func main() {
for {
fmt.Println("Hello, 世界")
time.Sleep(time.Second)
}
}