wide/hello/main.go

15 lines
125 B
Go

package main
import (
"fmt"
"time"
)
func main() {
for {
fmt.Println("Hello, 世界")
time.Sleep(time.Second)
}
}