;;;;;Evaluation ;Adam Nelson ;Chet Tobrey (egs :3.15 (eg '(+ 1 2 3 4) :of "using an arithmetic operator" :out '10) (eg '(funcall #'+ 1 2 3 4) :of "using funcall" :out '10 ) (eg '(apply #'+ '(1 2 3 4)) :of "using apply" :out '10) (eg '(apply #'+ 1 2 '(3 4)) :of "using apply" :out '10) (eg '(eval '(+ 1 2 3 4)) :of "using eval ... Norvig -- If you are using eval you are probably doing the wrong thing" :out '10))