module Hamster::EmptyList

def empty?

def empty?
  true
end

def head

def head
  nil
end

def tail

def tail
  self
end