mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
237 B
Kotlin
Vendored
18 lines
237 B
Kotlin
Vendored
class A() {
|
|
|
|
override fun toString(): String {
|
|
return "A"
|
|
}
|
|
}
|
|
|
|
|
|
fun box() : String {
|
|
|
|
val s = "1" plus "2" plus 3 plus 4L plus 5.0 plus 6F plus '7' plus A()
|
|
|
|
return "OK"
|
|
}
|
|
|
|
/*TODO:
|
|
1 NEW java/lang/StringBuilder*/
|