Skip to content

Instantly share code, notes, and snippets.

@adamw
Last active June 7, 2019 11:18
Show Gist options
  • Save adamw/7cb9a1d92632c93194869b08669c174b to your computer and use it in GitHub Desktop.
Save adamw/7cb9a1d92632c93194869b08669c174b to your computer and use it in GitHub Desktop.
def run(name: String)(th: IO[_, _]): Unit = {
println(s"-- $name --")
new DefaultRuntime {}.unsafeRun(th)
println()
}
run("Eval on") {
printThread.on(ec1)
}
/*
Outputs:
-- Eval on --
ec1-1-716083600
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment