RosettaCodeData/Task/Loops-Break/TI-89-BASIC/loops-break.ti-89
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
193 B
Text

Local x
Loop
rand(20)-1 → x
Disp x © new line and text
If x = 10 Then
Exit
EndIf
Output 64, 50, rand(20)-1 © paint text to the right on same line
EndLoop