Files
rlp/tst/Main.hs
crumbtoo 43454fa2e0 tests
2023-12-04 18:43:06 -07:00

19 lines
414 B
Haskell

module Main (main) where
----------------------------------------------------------------------------------
import Control.Monad
import System.Exit
import Test.QuickCheck
import Arith
----------------------------------------------------------------------------------
runTests :: IO Bool
runTests = runTestsArith
main :: IO ()
main = do
good <- runTests
if good
then exitSuccess
else exitFailure