| Description: |
Appends an additional element to the end of an array, which increases the arrays size by one. |
| Syntax: |
array.append value |
| Information: |
| array | varies |
The array to be appended to |
| value | varies |
The value to append to the array |
|
| Notes: |
Works only with one dimensional arrays. |
| Examples: |
Dim names(0) as string
names.append "Adam" |