14 lines
187 B
Kotlin
Vendored
14 lines
187 B
Kotlin
Vendored
class K {
|
|
fun reverse(s: String): String {
|
|
return s.reverse()
|
|
}
|
|
|
|
companion object {
|
|
fun getRef() = K::reverse
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return J.go()
|
|
}
|