Created
October 18, 2016 07:48
-
-
Save hhariri/139f0113ba03a8c92835f19cca99d1f0 to your computer and use it in GitHub Desktop.
This file contains 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
val x = 100 | |
val y = 1 | |
for (i in 0..x step y) { | |
} | |
val r = 1..100 | |
for (z in r) { | |
println(z) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment