fun main() = runBlocking<Unit> {
    val job: Job = launch { // 실행 중 상태의 코루틴 생성
        delay(1000L)
    }

    printJobState(job)
}