RosettaCodeData/Task/Loops-Break/Smalltalk/loops-break-1.st

12 lines
269 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[
|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