Skip to content

Instantly share code, notes, and snippets.

@dynamicy
Created July 12, 2021 01:54
Show Gist options
  • Save dynamicy/73b736f4a0374cd5ef3281e4b4e0690b to your computer and use it in GitHub Desktop.
Save dynamicy/73b736f4a0374cd5ef3281e4b4e0690b to your computer and use it in GitHub Desktop.
Kotlin quiz
val map = mapOf("Kotlin" to false)
println(map["Java"] == null ?: false)
println(map["Kotlin"] == null ?: false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment