Module SchoolName
''' <summary>
''' The start point of the program
''' </summary>
Sub Main()
'for loop
For i As Integer = 0 To 5
'Print message: n+".My School Name 678", where n =1..6
Console.WriteLine((i + 1).ToString() + ". My School Name 678")
Next
'delay
Console.WriteLine(vbNewLine + vbNewLine + "Press any key to exit ...")
Console.ReadKey()
End Sub
End Module
Comments
Leave a comment