mirror of
https://github.com/ilyakooo0/purescript-indexed-DB.git
synced 2024-11-22 18:52:29 +03:00
10 lines
216 B
Plaintext
10 lines
216 B
Plaintext
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."
|