Module Program | |
Sub Main() | |
For i = 1 To 3 | |
Dim x As Integer | |
x -= 1 | |
Console.WriteLine(x) | |
Next | |
End Sub | |
End Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Module Program | |
Sub Main() | |
For i = 1 To 3 | |
Dim x As Integer | |
x -= 1 | |
Console.WriteLine(x) | |
Next | |
End Sub | |
End Module |