Difference between revisions of "And"

From WikiManual
Jump to: navigation, search
Line 1: Line 1:
Takes the two top values on the conditions stack and and's them together. If both are true it results in true being placed on the conditions stack. If both false or one is false it will place a false on the conditions stack.
+
Takes the two top values on the boolean stack and and's them together. If both are true it results in true being placed on the conditions stack. If both false or one is false it will place a false on the conditions stack.
  
  0 0 and ''puts''''' 0 '''''on the stack''
+
  false false 0 and ''puts''''' false '''''on the boolean stack''
  0 1 and ''puts''''' 0 '''''on the stack''
+
  false true and ''puts''''' false '''''on the boolean stack''
  1 0 and ''puts''''' 0 '''''on the stack''
+
  true false and ''puts''''' false '''''on the boolean stack''
  1 1 and ''puts''''' 1 '''''on the stack''
+
  true true and ''puts''''' true '''''on the boolean stack''
  
 
{{Logic}}
 
{{Logic}}

Revision as of 16:29, 10 November 2007

Takes the two top values on the boolean stack and and's them together. If both are true it results in true being placed on the conditions stack. If both false or one is false it will place a false on the conditions stack.

false false 0 and puts false on the boolean stack
false true and puts false on the boolean stack
true false and puts false on the boolean stack
true true and puts true on the boolean stack

Logic:

true
false
and
or
not
xor