summaryrefslogtreecommitdiff
path: root/Haskell-book/06/test/Main.purs
blob: 845d0f47595fa5cce5d863b7154aceeb145e45d3 (plain)
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."