Skip to content

Instantly share code, notes, and snippets.

@mxswd
Created February 10, 2014 11:05
Show Gist options
  • Save mxswd/8914024 to your computer and use it in GitHub Desktop.
Save mxswd/8914024 to your computer and use it in GitHub Desktop.
import scalaz._, Scalaz._
import scalaz.effect._, Effect._
object Main extends SafeApp {
override def run(args: ImmutableArray[String]): IO[Unit] = for {
_ <- println("hello world").pure[IO]
} yield ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment