```fun <R> CallK<R>.makeCall(): IO<...
# arrow
s
Copy code
fun <R> CallK<R>.makeCall(): IO<Response<R>> =
    this.async(IO.async()) // Kind<ForIO, Response<R>>
        .fix() // IO<Response<R>>