forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1002 B
20 lines
1002 B
4 years ago
|
# 2 Go语言基础
|
||
|
|
||
|
Go是一门类似C的编译型语言,但是它的编译速度非常快。这门语言的关键字总共也就二十五个,比英文字母还少一个,这对于我们的学习来说就简单了很多。先让我们看一眼这些关键字都长什么样:
|
||
|
|
||
|
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
|
||
|
|
||
|
在接下来的这一章中,我将带领你去学习这门语言的基础。通过每一小节的介绍,你将发现,Go的世界是那么地简洁,设计是如此地美妙,编写Go将会是一件愉快的事情。等回过头来,你就会发现这二十五个关键字是多么地亲切。
|
||
|
|
||
|
## 目录
|
||
|
![](images/navi2.png?raw=true)
|
||
|
|
||
|
## links
|
||
|
* [目录](<preface.md>)
|
||
|
* 上一章: [第一章总结](<01.5.md>)
|
||
|
* 下一节: [你好,Go](<02.1.md>)
|