This commit is contained in:
Mark McGranaghan 2012-09-20 20:34:34 -07:00
parent fd9a58f8ff
commit 04b705a58d

View File

@ -13,7 +13,7 @@ func main() {
fmt.Println(j) // line. fmt.Println(j) // line.
} }
for { // `for` without a condition will loop until you for { // `for` without a condition will loop until you`
return return // return`.
} }
} // We'll see other `for` forms latter. } // We'll see other `for` forms latter.