6 lines
171 B
Plaintext
Vendored
6 lines
171 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(list: List<String>): String {
|
|
val first = list.firstOrNull()
|
|
if (first == null) error("empty")
|
|
return "First length: ${first.length}"
|
|
} |