Interpreters
The Structure of an Interpreter
Special Forms
Logical Special Forms
Quotation
Lambda expressions
Frame
Define
Last updated
Last updated
class LambdaProcedure:
def __init__(self, formals, body, env):
self.formals = formals # A scheme list of symbols
self.body = body # A scheme list of expressions
self.env = env # A Frame instance