Print Hello World in a message box


Module Module1

Sub Main()

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

msg = "Hello World"
MsgBox(msg)

End Sub

End Module


Comments

Popular posts from this blog

Check whether the input number is arm-strong or not

Reverse the input number and print it

Check whether the input number is prime or not