Programming Basics - Types of Variables
Lists
- Very powerful programming tool, proper use of list to store data will make your programs much more efficient
- Groups of other variables, organized in sequences, defined using the LIST command, or a single quote () and the list in its entirety
- Lists can be like arrays, but are more flexible
Normal Lists
- Any organization you want, or any type of list, but Order is important - i.e.
- simple (1 2 3 4 5)
- list of lists ((1 2 3) (4 5 6) (7 8 9))
- Combinations (1 2 (Run (2.3 2.4 2.4)) (6.4 1))