module Hamster::List

def last

def last
  list = self
  list = list.tail until list.tail.empty?
  list.head
end