|  | 
REM Hello World in Visual Basic for Windows
VERSION 2.00
Begin Form Form1
   Caption         =  
"Form1"
   ClientHeight    =  
6096
   ClientLeft      =  
936
   ClientTop       =  
1572
   ClientWidth     =  
6468
   Height          =  
6540
   Left            =  
876
   LinkTopic       =  
"Form1"
   ScaleHeight     =  
6096
   ScaleWidth      =  
6468
   Top             =  
1188
   Width           =  
6588
   Begin Label Label1
      Caption         =  
"Hello World!"
      Height          =  
372
      Left            =  
2760
      TabIndex        =  
0
      Top             =  
2880
      Width           =  
972
   End
End
Option Explicit
|  | 
'Hello World in Visual Basic .NET (VB.NET)
Imports System.Console
Class HelloWorld
    Public Shared Sub Main()
       
WriteLine("Hello, world!")
    End Sub
End Class
|  | 
' Hello World in Visual Basic 6
Private Sub Form_Load()
Print "Hello World"
End Sub
 
No comments:
Post a Comment