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