VB_0002_Variable1


Module Module1

    Sub Main()

        Dim x As Integer = 7
        Dim y As Integer = 3
        Dim z As Integer = x + y

        Console.WriteLine(z)
        Console.ReadLine()

    End Sub

End Module


Comments

Popular posts from this blog

VB_0002_Variable3