8 lines
180 B
Text
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
|