class Rake::LinkedList

def to_s

Convert to string: LL(item, item...)
def to_s
  items = map(&:to_s).join(", ")
  "LL(#{items})"
end