module Hamster

def self.stack(*items)

def self.stack(*items)
  items.reduce(EmptyStack) { |stack, item| stack.push(item) }
end