6 lines
81 B
Kotlin
6 lines
81 B
Kotlin
fun foo() {}
|
|
|
|
fun box(): String {
|
|
return if (foo() == Unit) "OK" else "Fail"
|
|
}
|