Skip to content

Instantly share code, notes, and snippets.

@motokiee
Created May 25, 2016 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save motokiee/6c4855970615560f15e64516b52c5310 to your computer and use it in GitHub Desktop.
Save motokiee/6c4855970615560f15e64516b52c5310 to your computer and use it in GitHub Desktop.
パッケージ変数をいまいち理解してないので明日調べよう #CodePiece
var someString string // 初期値が必要ないときによく使う
var someString2 = "test" // パッケージ変数の宣言に使う
someString3 := "test" // 一番よく目にするやつ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment