ch9: fix code format

This commit is contained in:
chai2010
2016-01-21 10:44:23 +08:00
parent b1730821fe
commit e29d0da705
6 changed files with 66 additions and 66 deletions

View File

@@ -7,8 +7,8 @@ Go的調度器使用了一個叫做GOMAXPROCS的變量來決定會有多少個
```go
for {
go fmt.Print(0)
fmt.Print(1)
go fmt.Print(0)
fmt.Print(1)
}
$ GOMAXPROCS=1 go run hacker-cliché.go