When this extension is enabled (it is by default), the Irie Pascal compiler will recognize a number of non-standard operators, which are not a part of Standard Pascal (i.e. ISO/IEC 7185), and it will allow some of the boolean operators to be used to perform bitwise operations. NOTE: ISO/IEC 7185 is the standard for the Pascal porgramming language published by the Internation Organization for Standardization.
The non-standard operators are:
and_then, or_else, xor, shl, shr
The boolean operators that can perform bitwise operations are:
not, and, or
See the Irie Pascal Programmer's Reference Manual (in "progref.html") for more information.