Skip to content

Instantly share code, notes, and snippets.

@hilfritz
Last active November 7, 2018 03:49
Show Gist options
  • Save hilfritz/2401230f5cd4435067437c2b8bb9eff2 to your computer and use it in GitHub Desktop.
Save hilfritz/2401230f5cd4435067437c2b8bb9eff2 to your computer and use it in GitHub Desktop.
Kotlin if else equivalent
property?.let {
//if 'property' is not null
fancyPrint(it) //'it' refers to 'property'
} ?: run {
//'else' clause - property is null
showError()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment