and  ( n1 n2 -- n3 )

published: 28 January 2023 / updated 28 January 2023

Lire cette page en français

 

vocabulary: forth

Execute logic AND.

Example:

false  false and .  \ display 0 
false  true  and .  \ display 0 
true   false and .  \ display 0 
true   true  and .  \ display -1