RosettaCodeData/Task/Loops-Do-while/XPL0/loops-do-while.xpl0
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
112 B
Text

code CrLf=9, IntOut=11;
int V;
[V:= 0;
repeat V:= V+1;
IntOut(0, V); CrLf(0);
until rem(V/6) = 0;
]