Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 841 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 841 Bytes

This is my implementation of a R⁵RS Scheme interpreter.
Very unsuitable for production.

It also serves as a playground to try out:

  • Megaparsec (instead of the venerable Parsec) for lexing and parsing
  • Transformers for holding state and general program architecture
  • text-display to handle user-facing output

Build and Run

Run $ cabal buildin order to build the project

Run $ cabal test in order to run the test suite

Acknowledgement

I wish to give my thanks to

  • Koz Ross
  • Mark Karpov