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

10 lines
124 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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