class Rake::LinkedList

def to_s

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