class Hamster::Cons

def initialize(head, tail = EmptyList)

def initialize(head, tail = EmptyList)
  @head = head
  @tail = tail
  @size = tail.cached_size? ? tail.size + 1 : nil
end