RosettaCodeData/Task/Loops-Break/FutureBasic/loops-break.futurebasic
2016-12-05 23:44:36 +01:00

8 lines
180 B
Text

include "ConsoleWindow"
randomize
dim as short stopGo, goOn
while ( stopGo != 10 )
stopGo = rnd(19) : print "stopGo ="; stopGo,
goOn = rnd(19) : print "goOn ="; goOn
wend