pop(a)

Returns the last pushed object into array a and removes it.


See also push popf pushf remove insert 


Example


a = ( 1, 2, 3 )

1  2  3

pop( a )

3