Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created November 17, 2019 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magdamiu/b11449f42a8f734bca08307c92c57ec7 to your computer and use it in GitHub Desktop.
Save magdamiu/b11449f42a8f734bca08307c92c57ec7 to your computer and use it in GitHub Desktop.
for
for (index in 1..10) {
println(index)
}
for (index in 12 downTo 0 step 2) {
println(index)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment