随笔分类 - Go
摘要:wget https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz sudo tar -C /usr/local -xzf go1.6.2.linux-amd64.tar.gz echo "export GOPATH=~/go"
阅读全文
只有注册用户登录后才能阅读该文。
只有注册用户登录后才能阅读该文。
摘要:It is recommended to use 'slice' over 'Array'. An array variable denotes the entire array; it is not a pointer to the first array element (as would be
阅读全文
摘要:Returning multiple values from a function is a common idiom in Go, most often used for returning values along with potential errors. We'll go over how
阅读全文