GitXplorerGitXplorer
f

stitch-lh

public
8 stars
3 forks
1 issues

Commits

List of commits on branch main.
Unverified
8e130a40376cdf9afaeb6e3e4322e1069339bb51

Remove parallelism config options for dependencies

ffacundominguez committed 3 years ago
Unverified
29b558b1c92149277cd4c7dc350869b1dab222d3

Update lh

ffacundominguez committed 3 years ago
Unverified
e17b3c8ebfb2379f7dc271a5bc6d40821e877e70

Update liquid-haskell

ffacundominguez committed 3 years ago
Unverified
710ca6e59756ec8ebc551e53dec89de2c9368fa4

Remove rendundant type ClosedUExpP

ffacundominguez committed 3 years ago
Unverified
ef5965cee98fe0ce27d2ee69e5015d744bdff968

Document better limitations of stitch-lh

ffacundominguez committed 3 years ago
Unverified
2442b8ac554262623453ffca1a90af89e199d34d

Groom type names

ffacundominguez committed 3 years ago

README

The README file for this repository.

StitchLH

StitchLH is a reimplementation of Stitch using LiquidHaskell.

Stitch is a full implementation of the simply typed lambda-calculus. The main stitch-lh executable is a REPL, allowing the user to write lambda-expressions and evaluating them. Run :help at the prompt to see other commands.

Under the hood, StitchLH is implemented with a simple abstract syntax tree. LiquidHaskell is used to ensure that only well-typed Stitch terms can be built internally. This feat requires little use of modern GHC/Haskell features.

To build and test

nix-shell --pure --run "stack --nix test"

To run the interpreter

nix-shell --pure --run "stack --nix exec stitch-lh"