goc/tests/e2e/samples/basic4ever-project/main.go

14 lines
123 B
Go
Raw Permalink Normal View History

2021-07-23 03:17:53 +00:00
package main
import (
"fmt"
"time"
)
func main() {
for {
time.Sleep(time.Second)
fmt.Println("hello, world")
}
}