Google が 11/10 に新言語 Go を発表したので取り敢えず動作させてみました。 難しいことはなにもない。とりあえず 32bit でコンパイルしたけど、64bitでもコンパイル可能です。テストが一部通過しない物があるみたいですが、後で調べます。 以下の手順でコンパイルと動作確認しました。ソースの取得には Mercurial が必要です。 export GOROOT=/path/to/go export GOOS=darwin export GOARCH=386 hg clone -r release https://go.googlecode.com/hg/ $GOROOT cd $GOROOT/src ./all.bash cat >hello.go <<EOF package main import "fmt" func main() { fmt.Printf("hello,