Skip to content
CodeWiki
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
Search
⌘K
English
English
Chinese
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
English
English
Chinese
Practice
/
Quiz
/
Backend
/
Kotlin backend development
Which shape actually starts two independent calls before waiting for either result?
from Kotlin backend development
Kotlin 2.4.10 / Ktor 3.5.1 / Java 25 LTS
intermediate
1 min
Which shape actually starts two independent calls before waiting for either result?
`val a = async { first() }.await(); val b = async { second() }.await()`
`val a = async { first() }; val b = async { second() }; use(a.await(), b.await())`
`val a = first(); val b = second(); use(a, b)`
`GlobalScope.async { first(); second() }.await()`
Check
Ask AI about this kata
Report an error
next kata
What does this boundary parser print?
Predict the output
A new version is available
Reload