peek(a)

Returns the last object pushed into array a.


See also peekf pop push 


Example


a = ( 1, 2, 3 )

1  2  3

peek( a )

3