goc/tests/samples/run_for_several_seconds/main.go

17 lines
192 B
Go
Raw Normal View History

2020-07-12 09:28:15 +00:00
package main
import (
"fmt"
"time"
"example.com/simple-project/a"
"example.com/simple-project/b"
2020-07-12 09:28:15 +00:00
)
func main() {
fmt.Println("hello")
a.Say()
b.Say()
2020-07-12 09:28:15 +00:00
time.Sleep(time.Second * 15)
}