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 @@
Dim [Shared] As DataType <i>vble1</i> [, <i>vble2</i>, ...]

View file

@ -0,0 +1 @@
Common [Shared] <i>symbolname</i>[()] [AS DataType] [, ...]

View file

@ -0,0 +1,4 @@
Var [Shared] variable = expression
Var variable As datatype
Var var1,var2,... As datatype

View file

@ -0,0 +1,3 @@
Var s2 = "hello" '' var-len string
Var ii = 6728 '' implicit integer
Var id = 6728.0 '' implicit double

View file

@ -0,0 +1 @@
Dim [Shared] <i>vble1</i> As DataType [, <i>vble2</i> As DataType, ...]

View file

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

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 (1 To 2, 1 To 5) As Integer => {{1, 2, 3, 4, 5}, {1, 2, 3, 4, 5}}

View file

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

View file

@ -0,0 +1,3 @@
v = a or 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,15 @@
c += a
c -= a
c *= a
c /= a
c \= a
c ^= a
c Mod= a
c Shl= n
c Shr= n
c &amp;= a
c And= n
c Eqv= n
c Imp= n
c Or= n
c Xor= n