Created
December 4, 2015 20:56
-
-
Save makiftutuncu/60df5df7f6e883259c9b to your computer and use it in GitHub Desktop.
Scala'da Temel Kavramlar yazısınındaki örnek 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val sayi: Int = 6 | |
val metin = "Sayı çift mi?" | |
// Bu hata verecek. | |
val ciftMi: Boolean = _ | |
// Bu da hata verecek. | |
sayi = 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment