| The Scaly Programming Language | ||
|---|---|---|
| Prev | ||
Deferred sum. Enables operator precedence by delaying evaluation.
left: intLeft operand
right: intRight operand
Deferred difference. Enables operator precedence by delaying evaluation.
left: intLeft operand
right: intRight operand
Deferred product. Enables operator precedence by delaying evaluation.
left: intLeft operand
right: intRight operand
Deferred quotient. Enables operator precedence by delaying evaluation.
left: intLeft operand
right: intRight operand
Addition. Lower precedence than multiplication and division.
left: intLeft addend
right: intRight addend
Subtraction. Lower precedence than multiplication and division.
left: intMinuend
right: intSubtrahend
Multiplication. Higher precedence than addition and subtraction.
left: intLeft factor
right: intRight factor
Division. Higher precedence than addition and subtraction.
left: intDividend
right: intDivisor
Integer division, truncating toward zero.
left: intDividend
right: intDivisor
Modulo (remainder after integer division).
left: intDividend
right: intDivisor
Equality comparison.
left: intLeft operand
right: intRight operand
Inequality comparison.
left: intLeft operand
right: intRight operand
Less than comparison.
left: intLeft operand
right: intRight operand
Greater than comparison.
left: intLeft operand
right: intRight operand
Less than or equal comparison.
left: intLeft operand
right: intRight operand
Greater than or equal comparison.
left: intLeft operand
right: intRight operand