class Rake::LinkedList

def initialize(head, tail=EMPTY)

def initialize(head, tail=EMPTY)
  @head = head
  @tail = tail
end