previous | index | next

Adding to the End of a List

Desired behavior:
          (add-to-end '(5 4 3 2) 1) ⇒ (5 4 3 2 1)
Q: Adding element elt to the empty list produces what list?

A:


previous | index | next