6 6 > 6.2 6.2 > 1.e3 1000.0 > alpha Error: The variable ALPHA is unbound. > (+ 1 2) 3 > (*1 2) Error: The function *1 is not defined. > (* 1 2) 2 > (/ 1 3) 0.3333333333333333 > pi 3.141592653589793 > e Error: The variable E is unbound. > (sqrt 4) 2.0 > (max 2 5) 5 > (min 2 5) 2 > (min 2 1.2) 1.2 > (setf lunch '(bars shakes nuts salad)) (BARS SHAKES NUTS SALAD) > lunch (BARS SHAKES NUTS SALAD) > Lunch (BARS SHAKES NUTS SALAD) > (first lunch) BARS > (second lunch) SHAKES > (third lunch) NUTS > (last lunch) (SALAD) > (fourth lunch) SALAD > (fifth lunch) NIL > (teth lunch) Error: The function TETH is not defined. > (tenth lunch) NIL > (hundreth lunch) Error: The function HUNDRETH is not defined. > (car lunch) BARS > (rest lunch) (SHAKES NUTS SALAD) > (cdr lunch) (SHAKES NUTS SALAD) > (setf eat '(lunch dinner midnight)) (LUNCH DINNER MIDNIGHT) > (stf boo lunch) Error: The function STF is not defined. > (setf boo lunch) (BARS SHAKES NUTS SALAD) > boo (BARS SHAKES NUTS SALAD) > (eq boo lunch) T > (first lunch) BARS > (rest lunch) (SHAKES NUTS SALAD) > (fourth lunch) SALAD > (last lunch) (SALAD) > (exit)