github.com/goplus/gop@v1.2.6/printer/_testdata/24-Goroutine/goroutine.gop (about)

     1  import "time"
     2  
     3  go func() {
     4  	println("Hello, goroutine!")
     5  }()
     6  
     7  time.Sleep(1e8)