BSet
Value = BSet ( Number , Bit )
Return
Number with its
Bitth bit set. The bit number of the least significant bit is 0.
The type of
Number may be
Byte,
Short,
Integer, or
Long.
The valid range of
Bit depends on the type of the
Number argument.
The datatype of the return value is the datatype of Number.
Errors
Examples
Print 13, Bin(13, 16)
Print BSet(13, 1), Bin(BSet(13, 1), 16)
13 0000000000001101
15 0000000000001111
Print 15, Bin(15, 16)
Print BSet(15, 1), Bin(BSet(15, 1), 16)
15 0000000000001111
15 0000000000001111
See also