1 2 3 4 5 6 7 8 9 10 11 12
(list `() `foo `(foo) `(foo bar) `(1 2) (let ((x 1)) `,x) (let ((x 1)) `(,x)) (let ((x 1)) ``(,x)) (let ((head '(a b)) (tail 'c)) `(,@head . ,tail)))