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

9 lines
182 B
Text

include c:\cxpl\codes;
int N;
loop [N:= Ran(20);
IntOut(0, N);
if N=10 then quit;
ChOut(0, 9\tab\);
IntOut(0, Ran(20));
CrLf(0);
]