1package main
2
3import "time"
4
5func main() {
6	go func() {
7		time.Sleep(3 * time.Second)
8		println("hello world1")
9	}()
10}
11