' Greeter1 Project ' Read the name of a person. Then print a ' greeting to that person. Public Module Module1 Public Sub Main() ' Declare name. Dim name As String ' Print prompt to the console. Console.Write("Enter a name: ") ' Read name from keyboard. name = Console.ReadLine() ' Print greeting to the console. Console.WriteLine("Hello, " & name & ", how are you?") ' Hold output window until user presses Enter key. Console.ReadLine() End Sub End Module