day 29 @go short statement if

goではifの中で変数の初期化ができる

if i := 1; i < 10 {
fmt.Println(i)
}
ことのきiのスコープはif中のステートメントのみ。