mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
6 lines
142 B
Kotlin
6 lines
142 B
Kotlin
fun StringBuilder.first() = this.charAt(0)
|
|
|
|
fun foo() = StringBuilder("foo").first()
|
|
|
|
fun box() = if (foo() == 'f') "OK" else "Fail ${foo()}"
|