Exercise
First contact with Visual Basic (VB.Net)
Objetive
Write a Visual Basic (VB.Net) program to print Hello on screen and then print your name (in a separate line).
Code
' Main module named Program
Module Program
' Main method that is the entry point of the program
Sub Main()
' Print "Hello" to the screen
Console.WriteLine("Hello")
' Print the name in a separate line
Console.WriteLine("YourName") ' Replace 'YourName' with your actual name
End Sub
End Module