LoginSignup
0
1

More than 3 years have passed since last update.

go moduleを使う

Posted at

環境変数で有効化する

go env -w GO111MODULE=on
go env | grep MOD

初期化処理

go mod init test

go.modが作成されている

go.mod
module test

go 1.13

起動

自動的にgo getされていないパッケージがインポートされる

go run main.go
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1