Imports System
Public Module Module1
Public Sub Main()
'Start o message
Console.WriteLine("Hello World" & "this is myfirst code")
'Blank line
console.WriteLine()
'End of message
console.WriteLine("I am learning to code...")
console.WriteLine("... and it is fun")
'Wait for user to exit
console.ReadLine()
End Sub
End Module