mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
12 lines
210 B
Kotlin
Vendored
12 lines
210 B
Kotlin
Vendored
operator fun String.inc() : String {
|
|
if (this == "") {
|
|
return "done"
|
|
}
|
|
var s = ""
|
|
return ++s
|
|
}
|
|
|
|
fun box() : String {
|
|
var s = "11test"
|
|
return if (++s == "done") "OK" else "FAIL"
|
|
} |