On the xkcd site today, the following appeared as a joke in a <script language="scheme"> tag

so what does the following code do / represent?

(define
  (eval exp env)
  (cond ((self-evaluating? exp) exp)
    ((variable? exp)
      (lookup-variable-value exp env))
    ((quoted? exp)
      (text-of-quotation exp))
    ((assignment? exp)
      (eval-assignment exp env))
    ((definition? exp)
      (eval-definition exp env))
    ((if? exp)
      (eval-if exp env))
    ((lambda? exp)
      (make-procedure
        (lambda-parameters exp)
        (lambda-body exp)  env))
    ((begin? exp)
      (eval-sequence (begin-actions exp) env))
    ((cond? exp)
      (eval (cond->if exp) env))
    ((application? exp)
      (apply (eval (operator exp) env)
        (list-of-values (operands exp) env)))
    (else  (error "Common Lisp or Netscape Navigator 4.0+ Required" exp))))
link|improve this question

liked the onhover – Tom Oct 26 '09 at 17:28
feedback

1 Answer

up vote 15 down vote accepted

It's essentially a simple interpreter, if you assume that all the requisite methods are filled in.

link|improve this answer
9  
it is from SICP, mostly, 4.1 The Metacircular Evaluator – Rainer Joswig Oct 26 '09 at 18:38
1  
To clarify: it's exactly the SICP 4.1 code except for the error message. – Bill Nov 4 '09 at 22:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.