i++ (golint)

This commit is contained in:
Noah Zoschke 2018-01-26 09:28:53 -08:00
parent 2faeae3aa6
commit 080d71ef9c

View File

@ -14,7 +14,7 @@ import "fmt"
func intSeq() func() int { func intSeq() func() int {
i := 0 i := 0
return func() int { return func() int {
i += 1 i++
return i return i
} }
} }