Skip to content

Go Notes

yunmingyang edited this page Dec 26, 2021 · 1 revision

The GO Programming Language

Chapter 1

  • run build and get
    • run不会生成二进制文件,但是.cache/go-build中会有cache生成,所以应该是编译过的,但是中间文件被清理了或者没有生成
    • build会生成二进制文件
    • get后面加githuburl, 文件会存储在$GOPATH/src中
  • Go 通过package了来组织,类似于有些语言的libraries or modules.一个package含一个或者多个go文件
  • import 放于package之后

Fluent Python

Thinking in Java

Clone this wiki locally