Numeric Operations

ZPL macros support basic numeric operations such as add, subtract, multiply, and divide. The syntax for each is shown below.

x = y + z 
x = y - z 
x = y * z 
x = y / z

All other operations are supported only through the use of numeric functions or numeric logical operators, both described in subsequent sections.

Next: