Fix error building with pandoc.

This commit is contained in:
jxskiss
2016-09-28 02:09:32 +08:00
parent f7e4126370
commit 6be131ac34
15 changed files with 28 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
# 第五章 函数
# 第五章 函数
函数可以让我们将一个语句序列打包为一个单元,然后可以从程序中其它地方多次调用。函数的机制可以让我们将一个大的工作分解为小的任务,这样的小任务可以让不同程序员在不同时间、不同地方独立完成。一个函数同时对用户隐藏了其实现细节。由于这些因素,对于任何编程语言来说,函数都是一个至关重要的部分。