previous | index | next

Getting All But the First n Elements of a List

Desired behavior:
          (list-tail '(1 2 3 4 5 6 7 8) 3) ⇒ (4 5 6 7 8)
list-tail is built-in to Scheme.

It is also an exercise (7.10, page 176)


previous | index | next