Remove 02.8.md spaces

This commit is contained in:
vCaesar
2017-06-10 11:43:30 +08:00
parent 975a3a3d1c
commit c51a6ae01c

View File

@@ -3,11 +3,11 @@
这一章我们主要介绍了Go语言的一些语法通过语法我们可以发现Go是多么的简单只有二十五个关键字。让我们再来回顾一下这些关键字都是用来干什么的。
```Go
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
```
- var和const参考2.2Go语言基础里面的变量和常量申明
- package和import已经有过短暂的接触