|
add () to []
|
Adds the specified variable to the specified list.
|
Variables (Lists)
|
add ("grapes") to [fruits]
- If 'fruits' was the list:
- apples
- cherries
- then 'fruits' would then be
- apples
- cherries
- grapes
add ("16") to [squares]
- If 'squares' was the list:
- 1
- 4
- 9
- then 'squares' would then be
- 1
- 4
- 9
- 16
|