I’ve tried all the things that everyone is putting up here… I’ve cut and pasted all the different suggestions and to no avail. I still get “Oops, try again. It looks like you didn’t print out the string ‘Ruby!’ 30 times.”
Just like the last guy it still produces the same result…
Does anybody know why??
m = "Ruby! "
loop do
30.times{ print “#{m}”}
break if m > 30
end
every one of these work in the display window… but I still get the “Oops, try again. It looks like you didn’t print out the string ‘Ruby!’ 30 times.”