forked from github/purescript-typeable
12 lines
176 B
Haskell
12 lines
176 B
Haskell
|
module Test.Main where
|
||
|
|
||
|
import Prelude
|
||
|
|
||
|
import Effect (Effect)
|
||
|
import Effect.Class.Console (log)
|
||
|
|
||
|
main :: Effect Unit
|
||
|
main = do
|
||
|
log "🍝"
|
||
|
log "You should add some tests."
|