Functions for List Manipulation
Append
- Adds lists together
- Both items must be lists.
- Items stay in the order they were entered
Cons
- Takes two items and turns them into an item in an item for an associative list (see descriptions in variable types above)
- Also called a 'dotted pair' because they look like:
- (cons 0 "HELLO") ? '(0 . "HELLO")