gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/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 }