Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 672 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 672 Bytes

Go

Go CLI

プログラムの実行方法は2種類ある

# 1. スクリプト言語のように実行
go run hello.go

# 2. コンパイルして実行可能ファイルを作成する
go build # go build hello.go のように、ファイル名を指定してもOK
./hello

ソースのフォーマットができる

go fmt # パッと見、ワード間のスペースの調整とかスペースのタブ置換とかできる
  • パッケージ管理ができる
go install
go get
  • 単体テストができる
go test

References