Created
September 27, 2022 20:23
-
-
Save s1monw1/9acd38126f4708a6a90041d9fd884f0e to your computer and use it in GitHub Desktop.
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
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