- OS Xの場合はXcodeのコマンドラインツールをインストール
- http://golang-jp.org/doc/install から環境に合わせたインストーラをダウンロード
- OS Xの場合はHomebrewでもよい
brew updatebrew install go
- OS Xの場合はHomebrewでもよい
- インストーラを実行してインストール
- インストールが終わったらPATHの設定は自動的に実行されるはずなので、
go versionを実行して確認
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Test { | |
| public static void main(String[] args) { | |
| System.out.println("We're Click and Hack, the Type-it brothers!"); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "database/sql" | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "regexp" |
OlderNewer