module Hamster

def list(*items)

def list(*items)
  items.reverse.reduce(EmptyList) { |list, item| list.cons(item) }
end