Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,2 @@
Dim variable As datatype
Dim var1,var2,... As datatype

View file

@ -0,0 +1,4 @@
Dim n1,n2 as Integer
Dim x as Double
Dim isRaining as Boolean
Dim greeting as String

View file

@ -0,0 +1,2 @@
Dim variable As datatype = value
Dim var1,var2,... As datatype

View file

@ -0,0 +1,6 @@
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}}

View file

@ -0,0 +1 @@
variable = expression

View file

@ -0,0 +1,3 @@
v = a
d = b^2 - 4*a*c
s3 = s1 & mid(s2,3,2)

View file

@ -0,0 +1 @@
variable <operator>= expression2

View file

@ -0,0 +1,8 @@
c += a
c -= a
c *= a
c /= a
c ^= a
c <<= n
c >>= n
c &= a