Skip to content

Instantly share code, notes, and snippets.

@MarcinMoskala
Created March 3, 2019 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinMoskala/2c2a470e9aef9975bd3b38fccfc6d1f7 to your computer and use it in GitHub Desktop.
Save MarcinMoskala/2c2a470e9aef9975bd3b38fccfc6d1f7 to your computer and use it in GitHub Desktop.
fun describeNormalNum(num: Int) {
val description = when {
num % 2 == 0 -> "Is even"
num % 2 == 1 -> "Is odd"
else -> throw Error()
}
print(description)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment