push(a, v)

Pushes object v at the end of array a.


See also pop pushf popf remove insert 


Example


a = ( 1, 2, 3 )

1  2  3

push( a, 4 )

1  2  3  4