crayon-syntax-highlighter/util/sample/vbnet.txt

9 lines
172 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
Imports System
Module Module1
'This program will display Hello World
Sub Main()
Console.WriteLine("Hello World")
Console.ReadKey()
End Sub
End Module