Previous: 2.2.2. Reserved Words To the Table of Contents Next: 2.2.4. Program Comments
2.2.2. Reserved Words Table of Contents 2.2.4. Program Comments

- 2.2.3. -
Table of Contents
2. TMT Pascal Language Description
2.2. Pascal Language Structure
2.2.3. Operators and Delimiters


2.2.3. Operators and Delimiters


Operators and delimiters are tokens that also have special Pascal meanings. The following is a list of valid operators and delimiters along with their meaning:
tokenUsage
@Address operator
^Pointer dereference operator
+Addition or set union operator
-Subtraction or set difference operator
*Multiplication or set intersection operator
/Real division
divInteger Division
modModulus
()Parentheses
[]Subscript delimiter, set constants
=Assignment operator
.Field selection operator
,Separator
..Range separator
:Type separator or case separator
=Equal operator
<Less than operator
>Greater than operator
<=Less than or equal operator
>=Greater than or equal operator
<>Not equal operator
andLogical AND
inSet operator
notLogical NOT
orLogical OR
shlBit shift left replacing right side with 0's
shrBit shift right replacing left side with 0's
xorLogical XOR
See also:
Operator Precedence


Previous: 2.2.2. Reserved Words To the Table of Contents Next: 2.2.4. Program Comments
2.2.2. Reserved Words Table of Contents 2.2.4. Program Comments

- 2.2.3. -