[kotlin/tr] some cleanup

This commit is contained in:
baha 2017-08-10 14:38:03 +03:00
parent ef1cf7d71e
commit 8b3b05a48c

View File

@ -215,7 +215,6 @@ fun helloWorld(val name : String) {
println("$key -> $value") println("$key -> $value")
} }
// The "with" function is similar to the JavaScript "with" statement.
// 'with' metodu ile bir objeye bir lamda metodu uygulayabiliriz. // 'with' metodu ile bir objeye bir lamda metodu uygulayabiliriz.
data class MutableDataClassExample (var x: Int, var y: Int, var z: Int) data class MutableDataClassExample (var x: Int, var y: Int, var z: Int)
val fooMutableData = MutableDataClassExample(7, 4, 9) val fooMutableData = MutableDataClassExample(7, 4, 9)
@ -379,8 +378,7 @@ fun helloWorld(val name : String) {
} }
println("Merhaba, dünya!".remove('a')) // => Merhb, düny! println("Merhaba, dünya!".remove('a')) // => Merhb, düny!
println(EnumExample.A) // => A
println(ObjectExample.hello()) // => Merhaba
//Biraz detaylı Kotlin //Biraz detaylı Kotlin
@ -438,6 +436,10 @@ fun helloWorld(val name : String) {
myVetoableName = "Baha" //<isim yok> -> Baha myVetoableName = "Baha" //<isim yok> -> Baha
myVetoableName = "C" //Tek harfli isim kabul etmiyoruz! myVetoableName = "C" //Tek harfli isim kabul etmiyoruz!
println(myVetoableName) //Baha println(myVetoableName) //Baha
//singleton değişkene ulaşmak:
println(ObjectExample.hello()) // => Merhaba
} }
// Enum class lar Java'daki enum lara benzerdir. // Enum class lar Java'daki enum lara benzerdir.