Imports System
Public Module Module1
Public Sub Main()
'Make sure you create a variable
dim challenge as string
'Write your question
Console.WriteLine("Are you up for a challenge?")
'Give the user a space to answer - you must put the variable name first as shown below
challenge = Console.ReadLine()
'With words you must use brackets and "
If challenge = ("Yes") then
Console.WriteLine("Hello")
else
Console.WriteLine("bye")
End If
'Must always End the If statment - remember you start and then you stop the If statment.
End Sub
End Module