class Rake::LinkedList

def self.cons(head, tail)

Cons a new head onto the tail list.
def self.cons(head, tail)
  new(head, tail)
end