Imports System
Public Module Module1
Public Sub Main()
'comment: I am telling the user that I will count to 10
Console.WriteLine("I'm gonna count to 10!")
'another comment: starting a For loop that goes from 1 to 10
For number As Integer = 1 To 10
'comment: writing some stars and then the number, then some more stars
Console.WriteLine("****** " & number & " ******")
'comment: I am adding a line just to make some space
Console.WriteLine("")
Next
'comment: all done, just telling the user that the program has terminated its execution
Console.WriteLine("Done!")
End Sub
End Module