Additive (+, -)

Addition and subtraction operators perform arithmetic operations on numeric values. The behavior with non-numeric types depends on the runtime’s type conversion and operation semantics.

Additive         = Multiplicative { ("+" | "-") Multiplicative } ;

Examples:

total + tax
endDate - startDate


Back to top

Copyright © Mesch Systems. All rights reserved.