Library /sys$common/syshlp/dbg$help.hlb DEBUG, Language Support, Pascal, Operators in Language Expressions *Conan The Librarian (sorry for the slow response - running on an old VAX) |
Supported Pascal operators in language expressions include: Kind Symbol Function Prefix + Unary plus Infix + Addition, concatenation Infix * Multiplication Infix / Real division Infix DIV Integer division Infix MOD Modulus Infix REM Remainder Infix ** Exponentiation (VAX specific) Infix IN Set membership Infix = Equal to Infix <> Not equal to Infix > Greater than Infix >= Greater than or equal to Infix < Less than Infix <= Less than or equal to Prefix NOT Logical NOT Infix AND Logical AND Infix OR Logical OR The typecast operator (::) is not supported in language expressions.
|