Files
2021-09-08 19:56:38 +03:00

3 lines
96 B
Kotlin
Vendored

fun box(): String =
"O" + try { throw Exception("oops!") } catch (e: Exception) { "K" }