1. 함수타입을 확장하면서 INVOKE()를 오버라이딩하는 예제 Kotlin Coroutines 코틀린 코루틴 라이브러리에서는 Continuation이라는 인터페이스가 있는데, 이 인터페이스는 비동기 작업의 결과를 처리하는 데 사용됩니다. Continuation 인터페이스는 resumeWith이라는 메서드를 가지고 있지만, 이를 invoke를 통해 간단하게 호출할 수 있습니다. interface Continuation { fun resumeWith(result: Result)}class PrintContinuation : Continuation { override fun resumeWith(result: Result) { println(result.getOrNull()) }}..