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

17 lines
247 B
Text

If OpenConsole()
Repeat
a = Random(19)
PrintN(Str(a))
If a = 10
Break
EndIf
b = Random(19)
PrintN(Str(b))
PrintN("")
ForEver
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit")
Input()
CloseConsole()
EndIf