ANS Forth for logical not is 0=, not invert. Replace wrong usage.

This commit is contained in:
Daniel C. Sobral 2000-01-28 03:41:39 +00:00
parent d9d102dd14
commit c2881538fa

View File

@ -45,8 +45,8 @@ decimal 32 constant bl
\ ** CORE EXT
0 constant false
-1 constant true
: <> = invert ;
: 0<> 0= invert ;
: <> = 0= ;
: 0<> 0= 0= ;
: compile, , ;
: erase ( addr u -- ) 0 fill ;
: nip ( y x -- x ) swap drop ;