## page was renamed from Go #pragma section-numbers off [[TableOfContents]] = 概要 = Googleにより作成された言語、コンパイルする = 公式サイト = * [http://golang.org/ The Go Programming Language] * [http://code.google.com/p/go/ go - Project Hosting on Google Code] = 学習 = * [http://go.shibu.jp/go_tutorial.html Let’s Go — プログラミング言語 Go ドキュメント v0.1 documentation] * [http://go.shibu.jp/effective_go.html Effective Go — プログラミング言語 Go ドキュメント v0.1 documentation] * [https://gist.github.com/hayajo/9559874 NDS#36 Go言語入門] * [http://www.programming-books.io/essential/go/ Essential Go - a free Go programming book] = 関連ツール = * [https://code.google.com/p/go-gb/ go-gb - A(nother) tool to build go projects. - Google Project Hosting] * [https://bitbucket.org/ymotongpoo/genv ymotongpoo / genv — Bitbucket] * [https://github.com/mitchellh/packer mitchellh/packer · GitHub] * [https://github.com/golang/groupcache golang/groupcache · GitHub] * [https://github.com/lann/squirrel lann/squirrel · GitHub] = ソースチェックアウト = 先端を取得したい場合は以下のようにする {{{ hg clone https://go.googlecode.com/hg/ go }}} 特定のリリースをチェックアウトしたい場合は以下のようにする。 {{{ hg clone -r release.2010-09-15 https://go.googlecode.com/hg/ go }}} = インストール = {{{ brew install go }}} GOPATH を設定します。デフォルトは ${HOME}/go です。 {{{ export GOPATH=${HOME}/lib/go }}} {{{ cd go/src ./all.bash cat >hello.go <