Bläddra i källkod

Update 14.1.md (#665)

* Update 14.1.md

* Update 14.1.md
marjune 6 år sedan
förälder
incheckning
e45628c48b
1 ändrade filer med 3 tillägg och 2 borttagningar
  1. 3 2
      eBook/14.1.md

+ 3 - 2
eBook/14.1.md

@@ -66,8 +66,9 @@ Go 的并发原语提供了良好的并发设计基础:表达程序结构以
 
 ```go
 var numCores = flag.Int("n", 2, "number of CPU cores to use")
-
-in main()
+```
+在 main() 中:
+```go
 flag.Parse()
 runtime.GOMAXPROCS(*numCores)
 ```