1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 12:32:21 +00:00

Merge pull request #152 from fuwensun/pr3-5-1

ch3-05-fix typo
This commit is contained in:
chai2010 2018-06-29 17:06:55 +08:00 committed by GitHub
commit cc6db529cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
## 顺序执行
顺序执行是我们比较熟悉的工作模式类似俗称流水账编程。所有不含分支、循环和goto语言,并且每一递归调用的Go函数一般都是顺序执行的。
顺序执行是我们比较熟悉的工作模式类似俗称流水账编程。所有不含分支、循环和goto语句,并且没有递归调用的Go函数一般都是顺序执行的。
比如有如下顺序执行的代码: