Imports System
Public Module Module1
Public Sub Main()
'Start of message
Console.WriteLine("Computers only do exactly as they are told...")
'Blank Line
Console.WriteLine("...so you need the code to be correct!")
'End of message
Console.WriteLine()
Console.WriteLine("If you make any mistake with the commands, it won't work")
'Wait for user to exit
Console.ReadLine()
End Sub
End Module