Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created August 1, 2016 12:42
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 fabiomsr/51048770dd89383778e99d7da1fa389f to your computer and use it in GitHub Desktop.
Save fabiomsr/51048770dd89383778e99d7da1fa389f to your computer and use it in GitHub Desktop.
// Java
String text = x > 5 ? "x > 5" : "x <= 5"
// Kotlin
val text = if (x > 5)
"x > 5"
else "x <= 5"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment