Print Hello World



Module Module1

Sub Main()

'program to print "Hello World" in the output window
Dim msg As String

msg = "Hello World"
Console.WriteLine(msg)
Console.ReadKey()
End Sub

End Module





Comments

Popular posts from this blog

Program to extract vowel from the input string

Check whether the input number is arm-strong or not

Print the factorial value of an input number