Class: Stack

Inherits:
Array
  • Object
show all
Defined in:
lib/stack.rb

Instance Method Summary collapse

Instance Method Details

#popObject



2
3
4
5
# File 'lib/stack.rb', line 2

def pop
  return 0 if empty?
  super
end