goc/tests/samples/run_for_several_seconds/main.go

12 lines
109 B
Go
Raw Normal View History

2020-07-12 09:28:15 +00:00
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("hello")
time.Sleep(time.Second * 15)
}