This document discusses data structures and looping in LISP. It notes that the only data structure in LISP is lists. It describes functions for accessing parts of lists like first, rest, append, and cons. It also demonstrates using dolist to iterate over lists, such as to write a function to reverse a list. Examples are provided to demonstrate applying these functions and looping construct to lists.
Related topics: