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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1252 (detected)
Wrap
Text File
|
2000-06-23
|
315 bÂ
|
12 lines
' Allow easy reference System namespace classes
Imports System
' Module houses the applicationÆs entry point
Public Module modmain
' "Main" is application's entry point
Sub Main()
' Write text to the console
Console.WriteLine ("Hello World using Visual Basic!")
End Sub
End Module