RosettaCodeData/Task/Loops-Break/XBS/loops-break.xbs
2023-07-01 13:44:08 -04:00

7 lines
132 B
Text

while(true){
set n:number = math.random(0,19);
log(`first: {n}`);
if(n==10){stop}
n = math.random(0,19);
log(`second: {n}`);
}