Skip to content

Instantly share code, notes, and snippets.

@Temidtech
Last active June 28, 2019 13:43
Show Gist options
  • Save Temidtech/57d3733421f72f78fcb5a73131782831 to your computer and use it in GitHub Desktop.
Save Temidtech/57d3733421f72f78fcb5a73131782831 to your computer and use it in GitHub Desktop.
var output: String
output = null // Compilation error
 
==================================
val name: String? = null // Nullable type
 
println(name.length()) // Compilation error
 
val nonNullableString = nullableString ?: "" //returns empty string if variable is null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment