5 lines
154 B
Kotlin
Vendored
5 lines
154 B
Kotlin
Vendored
|
|
fun box(): String =
|
|
"" +
|
|
try { "O" } catch (e: Exception) { "1" } +
|
|
try { throw Exception("oops!") } catch (e: Exception) { "K" } |