9
1
Option Strict On
2
Imports System
3
Public Module Module1
4
Public Sub Main()
5
Console.Write("Name: ")
6
Dim name As String = Console.ReadLine()
7
Console.WriteLine("Hello " & name & "!")
8
End Sub
9
End Module
Cached Result
Compilation error (line 11, col 4): The name 'Console' does not exist in the current context
Compilation error (line 12, col 23): The name 'Console' does not exist in the current context
Compilation error (line 16, col 4): The name 'Console' does not exist in the current context
Compilation error (line 17, col 4): The name 'Console' does not exist in the current context
Compilation error (line 18, col 4): The name 'Console' does not exist in the current context
Compilation error (line 12, col 23): The name 'Console' does not exist in the current context
Compilation error (line 16, col 4): The name 'Console' does not exist in the current context
Compilation error (line 17, col 4): The name 'Console' does not exist in the current context
Compilation error (line 18, col 4): The name 'Console' does not exist in the current context