Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

value = Abs(expression)

See also

Neg()

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)