Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created November 11, 2018 09:20
Show Gist options
  • Save ozcanzaferayan/acf01740d59b49ca53e7c20ec0f3aa68 to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/acf01740d59b49ca53e7c20ec0f3aa68 to your computer and use it in GitHub Desktop.
Kotlin Nedir makalesinde null olamayan bir değişkene null ataması
// Atama işleminin gerçekleştirilmesi ile null olmayan bir değişken üretiliyor
var a: String = "abc"
a = null // Derleme hatası verir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment