Isign()

From TinyMUX
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

FUNCTION: isign(integer)

Returns -1, 0, or 1 depending on whether integer is negative, zero, or positive, respectively.

Related Topics: abs(), iabs(), sign().

Examples

> say isign(-4)
You say "-1"
> say isign(4)
You say "1"
> say isign(0)
You say "0"
> say isign(-1)
You say "-1"

(--Soylent 00:26, 3 December 2005 (EST))