Initial commit + basic Expr impl

This commit is contained in:
2023-02-28 19:44:24 -08:00
commit 394fab8914
6 changed files with 178 additions and 0 deletions

17
spago.dhall Normal file
View File

@@ -0,0 +1,17 @@
{-
Welcome to a Spago project!
You can edit this file as you like.
Need help? See the following resources:
- Spago documentation: https://github.com/purescript/spago
- Dhall language tour: https://docs.dhall-lang.org/tutorials/Language-Tour.html
When creating a new Spago project, you can use
`spago init --no-comments` or `spago init -C`
to generate this file without the comments in this block.
-}
{ name = "bergamot"
, dependencies = [ "foldable-traversable", "lists", "logict", "prelude" ]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}