8 lines
108 B
Text
8 lines
108 B
Text
|
|
i = 0
|
||
|
|
loopStart:
|
||
|
|
i = i + 1
|
||
|
|
TextWindow.WriteLine(i)
|
||
|
|
If Math.Remainder(i, 6) <> 0 Then
|
||
|
|
Goto loopStart
|
||
|
|
EndIf
|