Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created September 27, 2022 20:23
Show Gist options
  • Save s1monw1/9acd38126f4708a6a90041d9fd884f0e to your computer and use it in GitHub Desktop.
Save s1monw1/9acd38126f4708a6a90041d9fd884f0e to your computer and use it in GitHub Desktop.
fun loopWithRange(){
for(i in 5 downTo 1 step 2){
print(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment