Skip to content

Instantly share code, notes, and snippets.

@nbness2
Last active October 7, 2021 12:14
Show Gist options
  • Save nbness2/95f09695ae914bf15a1a6e722b70408e to your computer and use it in GitHub Desktop.
Save nbness2/95f09695ae914bf15a1a6e722b70408e to your computer and use it in GitHub Desktop.
Maybe Null String From In Kotlin
fun main() {
val maybeNull: String = MaybeNull.maybeNullString() // allowed because compiler will assume you know what's happening with the `String!`
println(maybeNull)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment