Created
September 5, 2014 02:19
-
-
Save marcioalthmann/34e890ba2aa7bddc51a6 to your computer and use it in GitHub Desktop.
for-condition-increment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for var i = 0; i < 10; ++i{ | |
if(i % 2 == 0){ | |
println(i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment