Add Assignment 1 handout

This commit is contained in:
2024-09-04 13:09:18 +02:00
parent b7dc54fd3a
commit f9f949ea19
9 changed files with 259 additions and 0 deletions

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

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