diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-12-26 18:08:15 +0100 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-12-26 18:08:15 +0100 |
commit | 5d1d3b4f251bf938648d7d21c6641a1a0cc0768b (patch) | |
tree | e237fff9f493c0acc4154c6e77f1a7c3d0f6365f /first-order-exprs.cabal |
Initial
Diffstat (limited to 'first-order-exprs.cabal')
-rw-r--r-- | first-order-exprs.cabal | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/first-order-exprs.cabal b/first-order-exprs.cabal new file mode 100644 index 0000000..6144d2f --- /dev/null +++ b/first-order-exprs.cabal @@ -0,0 +1,18 @@ +cabal-version: >=1.10 +name: first-order-exprs +synopsis: First order expressions with simplifier +version: 0.1.0.0 +license: MIT +author: Tom Smeding +maintainer: tom@tomsmeding.com +build-type: Simple + +executable exprs + main-is: Main.hs + other-modules: AST, ASTfunc, Eval, Language, MonMap, Show, Simplify + build-depends: base >= 4.13 && < 4.15, + containers >= 0.6.3.1 && < 0.7, + mtl + hs-source-dirs: . + default-language: Haskell2010 + ghc-options: -Wall -O2 -threaded |