Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created June 4, 2017 06:49
Show Gist options
  • Save agustarc/658665868f44f16e6b331d706775e8fa to your computer and use it in GitHub Desktop.
Save agustarc/658665868f44f16e6b331d706775e8fa to your computer and use it in GitHub Desktop.
when(x) {
in 1..10 -> print("x is in the range")
!in 10..20 -> print("x is outside the range")
else -> print("none of the above")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment