class Hamster::Stack

def top

Returns the item at the top of the stack.
def top
  @list.car
end