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

10 lines
105 B
Kotlin
Vendored

fun box() : String {
try {
return "OK"
}
finally {
null?.toString()
}
}