home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / IntroDev / HelloWorld / vb / HelloVB.vb < prev    next >
Encoding:
Text File  |  2000-06-23  |  315 b   |  12 lines

  1. ' Allow easy reference System namespace classes
  2. Imports System
  3.  
  4. ' Module houses the applicationÆs entry point
  5. Public Module modmain
  6.    ' "Main" is application's entry point
  7.    Sub Main()
  8.       ' Write text to the console
  9.       Console.WriteLine ("Hello World using Visual Basic!")
  10.    End Sub
  11. End Module 
  12.