simon.vergauwen
import kotlin.coroutines.Continuation import kotlin.coroutines.EmptyCoroutineContext import kotlin.coroutines.startCoroutine val f: suspend () -> String = suspend { "Hello World!" } fun main() { f.startCoroutine(Continuation(EmptyCoroutineContext, ::println)) }
Alexey Belkov [JB]
A modern programming language that makes developers happier.