churf/language.cabal
sebastianselander be3fcfc9e3 Typeinference/checking on expressions done.
Simplified the typechecker a bit, removed GADT solution for now.
Still not fully working
2023-01-24 16:39:22 +01:00

47 lines
823 B
Text

cabal-version: 3.0
name: language
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: bachelor-group-66-systemf
maintainer: sebastian.selander@gmail.com
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
extra-source-fiels:
Grammar.cf
common warnings
ghc-options: -W
executable language
import: warnings
main-is: Main.hs
other-modules:
Grammar.Abs
Grammar.Lex
Grammar.Par
Grammar.Print
Grammar.Skel
Grammar.ErrM
Interpreter
TypeChecker
NewAbs
hs-source-dirs: src
build-depends:
base >= 4.16.3.0
, mtl
, containers
, either
, array
default-language: GHC2021