4 lines
76 B
Kotlin
Vendored
4 lines
76 B
Kotlin
Vendored
inline fun test(s: () -> Unit, p: (() -> Unit)?) {
|
|
s()
|
|
p?.invoke()
|
|
} |