number = 24
string = "a"
File.open("rainbow.txt", "a") do |f|
28656969456006.times do
puts string
f.puts string
string = string.next
end
end
|
Pastie
Support Pastie
or read my
Pastie << self
blog
number = 24
string = "a"
File.open("rainbow.txt", "a") do |f|
28656969456006.times do
puts string
f.puts string
string = string.next
end
end
|