DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / interp / testdata / concurrent / hello1.go
12345678910
package main import "time" func main() { go func() { time.Sleep(3 * time.Second) println("hello world1") }() }