RosettaCodeData/Task/Loops-Break/DWScript/loops-break.dw

6 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
while True do begin
var num := RandomInt(20);
PrintLn(num);
if num=10 then Break;
end;