RosettaCodeData/Task/Loops-Break/TI-89-BASIC/loops-break.basic

10 lines
193 B
Text
Raw Permalink Normal View History

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