Module Module1
Sub Main( )
Dim myInt As Integer = 7
Console.WriteLine("Initialized myInt: {0}", myInt)
myInt = 5
Console.WriteLine("After assignment myInt: {0}", myInt)
End Sub
End Module
Sub Main( )
Dim myInt As Integer = 7
Console.WriteLine("Initialized myInt: {0}", myInt)
myInt = 5
Console.WriteLine("After assignment myInt: {0}", myInt)
End Sub
End Module
No comments:
Post a Comment