Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created November 17, 2019 21:35
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 magdamiu/76bd2f3c30ec9d0eb59758113893b166 to your computer and use it in GitHub Desktop.
Save magdamiu/76bd2f3c30ec9d0eb59758113893b166 to your computer and use it in GitHub Desktop.
if/else
val number = 0
val result = if (number > 0) {
"Positive number"
} else if (number < 0) {
"Negative number"
} else {
"Zero"
}
println(result) // => Zero
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment