Warning: This is the manual of the legacy Guile 2.2 series. You may want to read the manual of the current stable series instead.

Next: , Previous: , Up: Data Types   [Contents][Index]


6.6.9 Lists

A very important data type in Scheme—as well as in all other Lisp dialects—is the data type list.8

This is the short definition of what a list is:


Footnotes

(8)

Strictly speaking, Scheme does not have a real datatype list. Lists are made up of chained pairs, and only exist by definition—a list is a chain of pairs which looks like a list.