Main.purs 216 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 module Test.Main where import Prelude import Control.Monad.Eff (Eff) import Control.Monad.Eff.Console (CONSOLE, log) main :: forall e. Eff (console :: CONSOLE | e) Unit main = do log "You should add some tests."