``` val libInit = IO { callLibraryCodeWhichCanThro...
# arrow
a
Copy code
val libInit = IO { callLibraryCodeWhichCanThrowRuntimeExceptions() }

// later in your code
libInit.unsafeRunAsync { /* optionally handle result */ }
👍 1