List¶
Type Code: 0. Internal Name: List
A List is a series of objects that contain elements that are not necessarily of the same type.
Essentially, consider a List as a Vector, but the type of elements is not strictly enforced.
Any Vector that happens to have different value types becomes a List.
(list 1 2 3 4) ;; List of integers
(list 'a 'b 'c) ;; List of symbols
(list 1 'a "asd" 2025.10.01) ;; List of different types
Lists are defined using the list function.