Skip to content

Instantly share code, notes, and snippets.

@renaudcerrato
Created February 9, 2019 09:14
Show Gist options
  • Save renaudcerrato/e09d79c257378ca743abda19cd91f37a to your computer and use it in GitHub Desktop.
Save renaudcerrato/e09d79c257378ca743abda19cd91f37a to your computer and use it in GitHub Desktop.
when examples 2
when(x) {
42 -> print("the answer")
0xbadbabe, 0xbadface -> print("l33t s534k!")
is String -> print("$[x.toUpperCase()]")
in 0..10 -> print("0 ≤ x ≤ 10")
!in 6..9 -> print("x < 6 and x > 9")
parseInt("0xcafe") -> print("no sugar please")
else -> print("?")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment