RosettaCodeData/Task/Loops-Break/FutureBasic/loops-break.futurebasic

9 lines
180 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
include "ConsoleWindow"
randomize
dim as short stopGo, goOn
while ( stopGo != 10 )
stopGo = rnd(19) : print "stopGo ="; stopGo,
goOn = rnd(19) : print "goOn ="; goOn
wend