push(table,value)

Add a new value to the end of a table.

Example

t={}
push(t,1)
push(t,2)
value = pop(t)