5 lines
72 B
Text
5 lines
72 B
Text
Dim i = 0
|
|
Do
|
|
i += 1
|
|
Console.WriteLine(i)
|
|
Loop Until i Mod 6 = 0
|