popf(a)

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


See also pop push pushf remove insert 


Example


a = ( 1, 2, 3 )

1  2  3

popf( a )

1