DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents 1 The Metacircular Evaluator Chapter 4 Section 4.1 We will not cover every little detail in the...

Slide 1 1 The Metacircular Evaluator Chapter 4 Section 4.1 We will not cover every little detail in the lectures, so you MUST read Section 4.1 in full. http://mitpress.mit.edu/sicp/full-…

Documents 1 6.001 SICP Variations on a Scheme Scheme Evaluator – A Grand Tour Techniques for language...

Slide 1 1 6.001 SICP Variations on a Scheme Scheme Evaluator – A Grand Tour Techniques for language design: Interpretation: eval/apply Semantics vs. syntax Syntactic transformations…

Documents Read - Eval - Print Loop

Read-Eval-Print Loop (define (driver-loop) (prompt-for-input input-prompt) (let ((input (read))) (let ((output (eval input the-global-env))) (announce-output output-prompt)…

Documents Lecture 22

Lecture 22 Rehearsal: Lazy Evaluation Infinite Streams in our lazy evaluator Weâll write a lazy interpreter. Our machine language is regular Scheme. I.e., it runs in applicative…