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