9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
|
Imports System
|
||
|
Module Module1
|
||
|
'This program will display Hello World
|
||
|
Sub Main()
|
||
|
Console.WriteLine("Hello World")
|
||
|
Console.ReadKey()
|
||
|
End Sub
|
||
|
End Module
|