Previous: Reserved Words To the Table of Content Next: Program Comments

- 2.2.3 -
TMT Pascal Language Description
Pascal Language Structure

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: Reserved Words To the Table of Content Next: Program Comments
Reserved Words Table of Content Program Comments

- 2.2.3 -