RosettaCodeData/Task/Loops-For/Ursa/loops-for.ursa
2023-07-01 13:44:08 -04:00

11 lines
190 B
Text

#
# for loop
#
decl int i j
for (set i 0) (< i 5) (inc i)
for (set j 0) (< j (int (+ i 1))) (inc j)
out "*" console
end for
out endl console
end for