goc/tests/e2e/samples/basic4ever-project/main.go
2021-07-23 11:17:53 +08:00

14 lines
123 B
Go

package main
import (
"fmt"
"time"
)
func main() {
for {
time.Sleep(time.Second)
fmt.Println("hello, world")
}
}