mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
8 lines
161 B
Kotlin
Vendored
8 lines
161 B
Kotlin
Vendored
fun String.<caret>f(p: Int) = hashCode() * p
|
|
|
|
fun f(s: String?) {
|
|
s?.f(1)
|
|
s?.substring(1)?.f(2)
|
|
val s1 = s?.f(3)
|
|
val s2 = s?.substring(1)?.f(4)
|
|
} |