Page History
...
value = Abs(expression)
See also
Example
Code Block |
---|
/* Assigns the value 100 to absolute_value. */ absolute_value = Abs(-100) /* Assigns the value 300 to the variable B. */ A = 500 B = Abs(A - 800) /* Assigns the value 0 to the variable C. */ C = Abs(0) |