User`s manual

mikroBASIC
- Basic Compiler for Microchip PIC microcontrollers
Boolean operators are not true operators, because there is no boolean data type
defined in mikroBasic.
These "operators" conform to standard Boolean logic. They cannot be used with
any data type, but only to build complex conditional expression.
if (astr > 10) and (astr < 20) then
PORTB = 0xff
end if
MikroElektronika:
Development
tools
-
Books
-
Compilers
mikroBASIC
making it simple...
79
page
Boolean Operators
Operator Operation
not negation
and conjunction
or disjunction
Example