Create basic lambda term type

This commit is contained in:
Joscha 2020-11-26 14:16:23 +01:00
parent b17c5d9d3d
commit fc0ede9499
3 changed files with 31 additions and 1 deletions

View file

@ -4,7 +4,7 @@ cabal-version: 1.18
--
-- see: https://github.com/sol/hpack
--
-- hash: 057a536ac3d0fd40b3122084eee53201158527bbcd0dbac7cec33d8fd06cf208
-- hash: 5e16e68a3016455a93f44cbee36b19144a1a414a8cb0bf4a062a1566b7119a38
name: props
version: 0.1.0.0
@ -23,12 +23,15 @@ extra-doc-files:
library
exposed-modules:
Props
Props.Lambda
other-modules:
Paths_props
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, containers
, text
default-language: Haskell2010
executable props
@ -40,5 +43,7 @@ executable props
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, containers
, props
, text
default-language: Haskell2010