Skip to content

Instantly share code, notes, and snippets.

@paraya3636
Created February 10, 2017 09:49
Show Gist options
  • Save paraya3636/78c7d15c0cfbea3d2349af83f9fbf6db to your computer and use it in GitHub Desktop.
Save paraya3636/78c7d15c0cfbea3d2349af83f9fbf6db to your computer and use it in GitHub Desktop.
when-is control by Kotlin
val value: T
when(value) {
is String -> ...
is Int -> ...
else -> ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment