Ejercicio
Primer contacto con Visual Basic
Objetivo
Cree un programa en Visual Basic para imprimir Hello en pantalla y, a continuación, imprima su nombre (en una línea separada).
Código
' 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