RosettaCodeData/Task/Variables/Visual-Basic-.NET/variables-4.visual

7 lines
266 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
Dim wholeNumber1,wholeNumber2 as Integer = 3
Dim realNumber as Double = 3.0
Dim isRaining as Boolean = False
Dim greeting as String = "Hello, this is World speaking."
Dim longArray() As Long = {0, 1, 2, 3}
Dim twoDimensions(,) As Integer = {{0, 1, 2}, {10, 11, 12}}