Index
Comparators

neq0

NEQ0

Description

first item on the stack is compared to zero. If zero, true (1) is pushed on the stack, otherwise false (0) is pushed back to the stack.

Note: See Data Types for comparison between dissimilar types and type conversion.

Examples

if (1 neq0)
    trace("1 is not equal to 0")
endif

Index