RosettaCodeData/Task/Loops-For-with-a-specified-step/XPL0/loops-for-with-a-specified-step.xpl0
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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?");
]