This commit is contained in:
2024-09-28 15:13:45 +02:00
parent 31a4cdaca8
commit 0dccdc0a95
10 changed files with 549 additions and 0 deletions

35
a4/a4.cabal Normal file
View File

@ -0,0 +1,35 @@
cabal-version: 3.0
name: a4
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
, process
, directory
exposed-modules:
APL.AST
APL.Eval
APL.InterpPure
APL.InterpIO
APL.Interp_Tests
APL.Monad
APL.Util
test-suite a4-test
import: common
type: exitcode-stdio-1.0
main-is: runtests.hs
build-depends:
base
, tasty
, a4