10 lines
144 B
Kotlin
Vendored
10 lines
144 B
Kotlin
Vendored
package app
|
|
|
|
import lib.*
|
|
|
|
fun runAppAndReturnOk(): String {
|
|
var result = "Fail"
|
|
anInlineFunction { result = "OK" }
|
|
return result
|
|
}
|