Skip to content

Instantly share code, notes, and snippets.

@chetkhatri
Created July 25, 2019 13:47
Show Gist options
  • Save chetkhatri/770bba17bc17d33c6310b4b529c6d843 to your computer and use it in GitHub Desktop.
Save chetkhatri/770bba17bc17d33c6310b4b529c6d843 to your computer and use it in GitHub Desktop.
import cats.effect.IO
import cats.implicits._
object CatsEffect2 extends App {
val printF = IO(println("Hi there!"))
val effects = for {
_ <- printF
_ <- printF
} yield ()
effects.unsafeRunSync
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment