Moved code out of handout directory

This commit is contained in:
2024-09-05 15:29:54 +02:00
parent f9f949ea19
commit 1627f4c6aa
9 changed files with 0 additions and 0 deletions

31
a1/a1.cabal Normal file
View File

@ -0,0 +1,31 @@
cabal-version: 3.0
name: a1
version: 1.0.0.0
build-type: Simple
common common
default-language: Haskell2010
ghc-options: -Wall
library
import: common
hs-source-dirs: src
build-depends:
base
, tasty
, tasty-hunit
exposed-modules:
APL.AST
APL.AST_Tests
APL.Eval
APL.Eval_Tests
test-suite a1-test
import: common
type: exitcode-stdio-1.0
main-is: runtests.hs
build-depends:
base
, tasty
, a1