Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 550 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 550 Bytes

Scheme Interpreter

An interactive interpreter for the scheme programming language written in python. Fully supports all R5RS features, along with some additional capabilties.

Starting an interactive session

To start an interactive scheme interpreter session,run the following command:

python3 scheme.py

To exit the Scheme interpreter, press Ctrl-d or run the following command:

scm> (exit)

Use the following command to evaluate the expressions in an input file using the file name:

python3 scheme.py inputfilename.scm