init
This commit is contained in:
commit
7008596f4c
58 changed files with 1197 additions and 0 deletions
31
lamb.cabal
Normal file
31
lamb.cabal
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
cabal-version: 3.0
|
||||
name: lamb
|
||||
version: 0.1.0.0
|
||||
license: NONE
|
||||
author: jingus
|
||||
maintainer: jack@jingus.dev
|
||||
build-type: Simple
|
||||
|
||||
common warnings
|
||||
ghc-options: -Wall
|
||||
|
||||
executable lamb
|
||||
import: warnings
|
||||
main-is: Main.hs
|
||||
other-modules: Parser,
|
||||
Evaluation
|
||||
build-depends: base
|
||||
hs-source-dirs: src
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite lamb-tests
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: Spec.hs
|
||||
hs-source-dirs: src, test
|
||||
other-modules: Parser,
|
||||
ParserSpec,
|
||||
Evaluation,
|
||||
EvaluationSpec
|
||||
build-depends: base, hspec
|
||||
build-tool-depends: hspec-discover:hspec-discover
|
||||
default-language: Haskell2010
|
||||
Loading…
Add table
Add a link
Reference in a new issue