goc/tests/samples/run_for_several_seconds/main.go
2020-07-12 20:02:11 +08:00

12 lines
109 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("hello")
time.Sleep(time.Second * 15)
}