32 lines
223 B
Kotlin
Vendored
32 lines
223 B
Kotlin
Vendored
fun test() {
|
|
val str = ""
|
|
|
|
str
|
|
|
|
.length
|
|
|
|
str
|
|
|
|
?.length
|
|
|
|
str
|
|
|
|
as String
|
|
|
|
str
|
|
|
|
as? String
|
|
|
|
str
|
|
|
|
?: foo
|
|
|
|
true
|
|
|
|
|| false
|
|
|
|
|
|
false
|
|
|
|
&& true
|
|
} |