Not really homework. But it is pretty basic, so I thought this forum was the best. I'm brand new to Lisp and am working through the online tutorial: http://art2.ph-freiburg.de/Lisp-Course Why does first return NIL and rest return (NIL)? (first '(() ())) NIL (rest '(() ())) (NIL) Why does first retur...