Drag the edges to resize the window.
Great work! We'll give you a bit of a break from the numbers game.
m = 0 loop do m += 1 print m break if m == 10 end
In the example above, we print out 12345678910 since we loop 10 times.
12345678910