⇐ Index ⇐ Math
SIGN0(<-val)
Returns the sign of the input value. Return value is 1 when f is positive, -1 when f is negative, and 0 if the input value is 0.
trace(sign(42)) #prints '1'
⇐ Index