Skip to content

Instantly share code, notes, and snippets.

@lforite
Created December 11, 2019 08:49
Show Gist options
  • Select an option

  • Save lforite/2c0305a5b68fad2fd09fa37a353b9f75 to your computer and use it in GitHub Desktop.

Select an option

Save lforite/2c0305a5b68fad2fd09fa37a353b9f75 to your computer and use it in GitHub Desktop.
val context: String = "Kleisli, is that you ?"
val kleisli: Kleisli[IO, String, String] = Kleisli.ask()
val io: IO[String] = kleisli.run(context)
io.unsafeRunSync()
// returns string "Kleisli, is that you?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment