Merge pull request #467 from marcalj/patch-1

`for` statements fix.
This commit is contained in:
astaxie
2015-05-11 10:23:55 +08:00

View File

@@ -62,7 +62,7 @@ The label name is case sensitive.
//...
}
`expression1`, `expression2` and `expression3` are all expressions, where `expression1` and `expression3` are variable definitions or return values from functions, and `expression2` is a conditional statement. `expression1` will be executed before every loop, and `expression3` will be executed after.
`expression1`, `expression2` and `expression3` are all expressions, where `expression1` and `expression3` are variable definitions or return values from functions, and `expression2` is a conditional statement. `expression1` will be executed once before looping, and `expression3` will be executed after each loop.
Examples are more useful than words.