RosettaCodeData/Task/Loops-For/M2000-Interpreter/loops-for-2.m2000
2025-06-11 20:16:52 -04:00

17 lines
231 B
Text

module check {
For i=1 to 5
For j=1 to i
Print "*";
Next j
Print
Next i
Print "End1"
For i=1 to 5 {
For j=1 to i {
Print "*";
}
Print
}
Print "End2"
}
check