class Hamster::Stack

def push(item)

def push(item)
  transform { @list = @list.cons(item) }
end