Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions zh/02.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package main
import (
"fmt"
"runtime"
"time"
)

func say(s string) {
Expand All @@ -31,6 +32,7 @@ func say(s string) {
func main() {
go say("world") //开一个新的Goroutines执行
say("hello") //当前Goroutines执行
time.Sleep(time.Second)
}

// 以上程序执行后将输出:
Expand Down