github.com/traefik/yaegi@v0.15.1/interp/testdata/concurrent/hello1.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 world1")
     9  	}()
    10  }