mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
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" } |