Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 468 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 468 Bytes

Scheme REPL / Interpreter

This is a basic Scheme REPL which follows this tutorial.

To begin the interactive REPL, run with no commands the following:

stack run

To execute only a single expression, run the following:

stack run "{expr}"

Note that the proper way to pass the expression in is environment dependent. It is up to the user to properly escape necessary characters (e.g. quotes).