Method: Nudge::Stack#push

Defined in:
lib/interpreter/stack.rb

#push(item) ⇒ Object

Only non-nil objects can be pushed; there is no type checking or validation beyond that.



19
20
21
# File 'lib/interpreter/stack.rb', line 19

def push(item)
  @entries.push(item) unless item == nil
end