Add initial version of unification monad transformer

Yes, it's in the same file as the syntax. Make it work,
make it right, make it fast.
This commit is contained in:
2023-03-03 22:09:08 -08:00
parent 394fab8914
commit 7fc58ce0af
2 changed files with 174 additions and 5 deletions

View File

@@ -11,7 +11,20 @@ When creating a new Spago project, you can use
to generate this file without the comments in this block.
-}
{ name = "bergamot"
, dependencies = [ "foldable-traversable", "lists", "logict", "prelude" ]
, dependencies =
[ "bifunctors"
, "control"
, "foldable-traversable"
, "lazy"
, "lists"
, "logict"
, "maybe"
, "newtype"
, "ordered-collections"
, "prelude"
, "transformers"
, "tuples"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}