7 lines
132 B
Text
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}`);
|
|
}
|