RosettaCodeData/Task/Floyds-triangle/Ring/floyds-triangle.ring

10 lines
124 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
rows = 10
n = 0
for r = 1 to rows
for c = 1 to r
n = n + 1
see string(n) + " "
next
see nl
next