go-tour/goroutines.go
2020-02-15 12:40:48 -06:00

19 lines
225 B
Go

package main
import (
"fmt"
"time"
)
func say(s string) {
for i := 0; i < 5; i++ {
time.Sleep(100 * time.Millisecond)
fmt.Println(s)
}
}
func main() {
go say("world")
say("hello")
}