idris-0.9.19.1: samples/effects/hworld.idr
module Main
import Effects
import Effect.StdIO
hello : { [STDIO] } Eff ()
hello = putStrLn "Hello world!"
main : IO ()
main = run hello
module Main
import Effects
import Effect.StdIO
hello : { [STDIO] } Eff ()
hello = putStrLn "Hello world!"
main : IO ()
main = run hello