I have been using Kotlin since 1.0-M01 and 1.1 for...
# eap
p
I have been using Kotlin since 1.0-M01 and 1.1 for ten minutes and I have some basic question. Is there any chance to use such fancy syntax for coroutines
Copy code
val future = async<String> {
        (1..5).map {
            await(startLongAsyncOperation(it))
        }.joinToString("\n")
    }
kotlinx.coroutines requires at least 24 Android API level that is obviously unacceptable at this moment