Skip to content

Instantly share code, notes, and snippets.

@chelseatroy
Created November 7, 2019 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chelseatroy/f0adf0ae040d668c32888e8902355419 to your computer and use it in GitHub Desktop.
Save chelseatroy/f0adf0ae040d668c32888e8902355419 to your computer and use it in GitHub Desktop.
Value of Operator
(define (apply-builtin-procedure proc args env)
(let ((evaluated-args (map (lambda (arg) (actual-value arg env)) args)))
(apply proc evaluated-args))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment