Name

zero-not-equals:core — ordinary primitive

Synopsis

FORTH
0<> ( value -- cond )(); 
 ;

Description

returns a logical-value saying if the value was not-zero. This is most useful in turning a numerical value into a boolean value that can be fed into bitwise words like AND and XOR - a simple IF or WHILE doesn't need it actually.