An open API service indexing awesome lists of open source software.

https://github.com/xtaci/goscm

simple scheme interpreter
https://github.com/xtaci/goscm

Last synced: about 1 year ago
JSON representation

simple scheme interpreter

Awesome Lists containing this project

README

          

# goscm
simple scheme interpreter

#substituation rule


To evaluate an application:
Evaluate the operator to get procedure
Evaluate the operands to get arguments
Apply the procedure to the arguments
Copy the body of the procedure.
subsituting the arguments applied
for the formal parameters of the pocedure.
Evaluate the resulting new body.