Method: Stack#push

Defined in:
lib/data_structures/stack.rb

#push(el) ⇒ Object



27
28
29
30
# File 'lib/data_structures/stack.rb', line 27

def push(el)
  @store.push(el)
  self
end