<Value> = The value that is to be appended (added to the end of) the selected array.
<Var/Array> = The array that is to have the value added to it.
Adds a new value to the end of the specified array.
The target array is one element larger after this instruction executes.
This command will only work with an existed array. If the array does not exsist it must be created first.
Example:
$value = 5
append $value to array $this.array
This would add the $value (5) to the end of the array $this.array.
Command Location:
- »» General Commands
- »» Arrays
append <Value> to array <Var/Array>
- »» Arrays