8 lines
156 B
Text
8 lines
156 B
Text
i = 0
|
|
' first iteration - before the While
|
|
i = i + 1
|
|
TextWindow.WriteLine(i)
|
|
While Math.Remainder(i, 6) <> 0
|
|
i = i + 1
|
|
TextWindow.WriteLine(i)
|
|
EndWhile
|