Created
November 7, 2019 22:00
-
-
Save chelseatroy/f0adf0ae040d668c32888e8902355419 to your computer and use it in GitHub Desktop.
Value of Operator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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