Imports System
Public Module Module1
Public Sub Main()
'Hello There! This is the Console.ReadLine tutorial. Here I'll show you how to use the ReadLine code and what it does.
'The first thing to getting the ReadLine code to work is to actually write it out. Like this
Console.ReadLine()
'What this allows you to do is set up a way for a user to type in an answer.
'You can also use Dim here to save a variable as whatever the user desires. Like this
Dim ans as String
ans = Console.ReadLine()
End Sub
End Module