Then you'd get an `Either<Throwable, Unit>`
# arrow
b
Then you'd get an
Either<Throwable, Unit>
y
Great.
r
I didn't think you could bind an
Either
in an
IO
continuation
b
I'd have to look to be sure but IIRC
IO<A>.attempt() -> IO<Either<Throwable, A>>
, so it's not binding the Either
r
Oh, right, you are right