1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/Negation.md
2022-12-24 19:12:43 -06:00

446 B

'Negation is the process of changing the sign of a positive number to negative.

Usage: number% = -number%

Negation can be performed by adding a negative (- minus) sign to a number or by multiplying or dividing a number by any negative value. If a negative value is negated, the value of the number becomes positive.

See Also