《ANSI Common Lisp》第二章习题

ZMonster at 
Describe what happens when the following expressions are evaluated:(a) (+ (- 5 1) (+ 3 7))(b) (list 1 (+ 2 3))(c) (if (listp 1) (+ 1 2) (+ 3 4))(d) (list (and (listp 3) t) (+ 1 2))My answer:(a) 14(b) (1 5)(c) 7(d) (NIL 3)Give three distinct cons expressions that return (a b c).My answer:(cons 'a '(b……