9 lines
167 B
Text
9 lines
167 B
Text
while(true) {
|
|
a := (Float->Random() * 20.0)->As(Int);
|
|
a->PrintLine();
|
|
if(a = 10) {
|
|
break;
|
|
};
|
|
a := (Float->Random() * 20.0)->As(Int);
|
|
a->PrintLine();
|
|
}
|