RosettaCodeData/Task/Hello-world-Graphical/Visual-Basic-.NET/hello-world-graphical.vb
2023-07-01 13:44:08 -04:00

7 lines
131 B
VB.net

Imports System.Windows.Forms
Module GoodbyeWorld
Sub Main()
Messagebox.Show("Goodbye, World!")
End Sub
End Module