Last active
August 8, 2017 06:29
-
-
Save CDRussell/44d458b67aa15298f653034bd3503a51 to your computer and use it in GitHub Desktop.
Kotlin Simple rangeTo Example
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
if (i in 1..10) { | |
println("$i is within the range of 1-10") | |
} else { | |
println("$i is not in range of 1-10") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment