9.0

88
n1 Xor n2 Bitwise exclusive-or the integer value of n1 with the integer value n2.
n1 Eqv n2 Bitwise equivalence the integer value of n1 with the integer value n2
(
same as Not
(
n1
Xor n2)).
n1 Imp n2 Bitwise implicate the integer value of n1 with the integer value n2 (same as
(
Not n1
)
Or n2).
Example
Sub Main
N1 = 10
N2 = 3
S1$ = "asdfg"
S2$ = "hjkl"
Debug
.Print -N1 '-10
Debug
.Print N1 ^ N2 ' 1000
Debug
.Print Not N1 '-11
Debug
.Print N1 * N2 ' 30
Debug
.Print N1 / N2 ' 3.3333333333333
Debug
.Print N1 \ N2 ' 3
Debug
.Print N1 Mod N2 ' 1
Debug
.Print N1 + N2 ' 13
Debug
.Print S1$ + S2$ '"asdfghjkl"
Debug
.Print N1 - N2 ' 7
Debug
.Print N1 & N2 '"103"
Debug
.Print N1 < N2 'False
Debug
.Print N1 <= N2 'False
Debug
.Print N1 > N2 'True
Debug
.Print N1 >= N2 'True
Debug
.Print N1 = N2 'False
Debug
.Print N1 <> N2 'True
Debug
.Print S1$ < S2$ 'True
Debug
.Print S1$ <= S2$ 'True
Debug
.Print S1$ > S2$ 'False
Debug
.Print S1$ >= S2$ 'False
Debug
.Print S1$ = S2$ 'False
Debug
.Print S1$ <> S2$ 'True
Debug
.Print N1 And N2 ' 2
Debug
.Print N1 Or N2 ' 11
Debug
.Print N1 Xor N2 ' 9
Debug
.Print N1 Eqv N2 ' -10
Debug
.Print N1 Imp N2 ' -9
End
Sub
All Functions by Groups
Declaration:
#Reference
, #Uses, Attribute, Class Module, Code Module, Const, Declare, Deftype, Dim, Enum...End Enum,
Function...End Function
, Object Module, Option, Private, Property...End Property, Public, ReDim, Static, Sub...End
Sub, Type...End Type. WithEvents
Data Type:
Any
, Boolean, Byte, Currency, Date, Decimal, Double, Integer, Long, Object, PortInt, Single, String, String*n,
Variant
, obj type, user enum, user type.
Assignment:
Erase
, Let, LSet, RSet, Set.