mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
243 B
Kotlin
Vendored
14 lines
243 B
Kotlin
Vendored
internal class KotlinClass : JavaClass<String>() {
|
|
fun doIt(): String {
|
|
var result = ""
|
|
execute("") {
|
|
result = "OK"
|
|
}
|
|
return result
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return KotlinClass().doIt()
|
|
}
|