This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Logical Operators
| Arguments | Result | Notation | 
|---|---|---|
| Two items on the stack | The conditional AND of the two arguments | n1 n2 – n3  | 
	
Pops two items from the stack and treats them as TRUE/FALSE (0/1 or Boolean) values. If they are both TRUE, 1 is pushed to the stack. Otherwise, 0 is pushed to the stack.
example goes here