연속성(Concurrency)1번suspend fun main() = coroutineScope { async { someService.callAPI1() }.await() async { someService.callAPI2() }.await()}위 코드는 두 API 호출이 순차적으로 이루어집니다.첫 번째 async 블록은 callAPI1()를 호출하고, 그 결과를 기다린 후, 두 번째 async 블록이 시작됩니다.이 방식은 두 번째 API 호출이 첫 번째 API 호출의 결과에 의존적인 경우 또는 순차적 실행이 필요한 경우에 사용하기 적합합니다. 2번suspend fun main() = coroutineScope { async { someService.callAPI1() ..