James Knight
Results
1
comments of
James Knight
``` class String def rainbow rainbow_colors = %i[red light_red light_yellow green light_green light_blue blue light_magenta] r = rainbow_colors.each.cycle each_char.map { |c| c.send(r.next) }.join end end text = 'Colorize me!, color...