RosettaCodeData/Task/Loops-For-with-a-specified-step/XPL0/loops-for-with-a-specified-step.xpl0
2023-07-01 13:44:08 -04:00

8 lines
152 B
Text

include c:\cxpl\codes;
int I;
[for I:= 2 to 8 do
[IntOut(0, I); Text(0, ", ");
I:= I+1;
];
Text(0, "who do we appreciate?");
]