RosettaCodeData/Task/Loops-Break/Smalltalk/loops-break-1.st
2023-07-01 13:44:08 -04:00

11 lines
269 B
Smalltalk

[
|first second done|
first := Random nextIntegerBetween:0 and:19.
Stdout print:first; cr.
(done := (first == 10)) ifFalse:[
second := Random nextIntegerBetween:0 and:19.
Stdout print:' '; print:second; cr.
].
done
] whileFalse