💕 Adding assignment 2

This commit is contained in:
2024-09-12 13:54:13 +02:00
parent 3722040d09
commit b061522fd1
9 changed files with 321 additions and 0 deletions

12
a2/a2-handout/runtests.hs Normal file
View File

@ -0,0 +1,12 @@
import qualified APL.Check_Tests
import qualified APL.Eval_Tests
import Test.Tasty (defaultMain, testGroup)
main :: IO ()
main =
defaultMain $
testGroup
"APL"
[ APL.Eval_Tests.tests,
APL.Check_Tests.tests
]