Module Module1
Sub Main()
Dim A As Integer = 100
Dim B As Double = 0.123456789
Dim Message As String = "Hello, VB World!"
Console.WriteLine(A)
Console.WriteLine("The value of A is " & A)
Console.WriteLine(B)
Console.WriteLine(B & " plus " & A & " = " & B + A)
Console.WriteLine(Message)
End Sub
End Module
Sub Main()
Dim A As Integer = 100
Dim B As Double = 0.123456789
Dim Message As String = "Hello, VB World!"
Console.WriteLine(A)
Console.WriteLine("The value of A is " & A)
Console.WriteLine(B)
Console.WriteLine(B & " plus " & A & " = " & B + A)
Console.WriteLine(Message)
End Sub
End Module
No comments:
Post a Comment