golang notes & tips 总结 Readlist

精通x语言😂,先来看看Go吧

  • 需要安装go1.11以上的版本, 配置好GOPROXY和GO111MODULE后使用国内代理来Import依赖。

  • third party tool:

    • Go autocomplete tool: go get -u github.com/nsf/gocode
    • Go debug tool: go get -u github.com/go-delve/delve/cmd/dlv

总结

  • multiline strings: backticks instead of double quotes.

    `line 1
    line 2
    line 3`
    

Readlist