by Brayla Sana | Jan 16, 2017 | Boolean, LSL, Operators, OSSL, Wiki
The AND operation compares each bit in two integers; if both bits are set to “1”, then the final result will be “1”, otherwise it will be “0”. This is done “per-bit”, or “bitwise”. Truth Table: AND 1 0 1 1 0...
by Brayla Sana | Jan 16, 2017 | Assignment, LSL, Operators, OSSL, Wiki
The most common arithmetic operation is assignment, denoted with the “=” sign (single equal sign). Loosely translated, it means, take what is found on the right side of the equal sign and assign it to the left side. Any expression that evaluates to a...