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("hello1")
say("hello2")
}
输出:
hello2
hello1
hello1
hello2
hello2
hello1
hello2
hello1
hello2
|
请发表评论