github.com/gmemcc/yaegi@v0.12.1-0.20221128122509-aa99124c5d16/interp/testdata/concurrent/hello2.go (about)

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