Created
April 26, 2020 14:59
-
-
Save gyugyu90/0cabae963175fa9a17f0f89f0f885d40 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 main() { | |
val items = setOf("apple", "banana", "kiwifruit") | |
when { | |
"orange" in items -> println("juicy") | |
"apple" in items -> println("apple is fine too") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment