Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created April 26, 2020 14:59
Show Gist options
  • Save gyugyu90/0cabae963175fa9a17f0f89f0f885d40 to your computer and use it in GitHub Desktop.
Save gyugyu90/0cabae963175fa9a17f0f89f0f885d40 to your computer and use it in GitHub Desktop.
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