Difference between revisions of "And"
From WikiManual
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | Takes the two top values on the | + | 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 boolean stack, otherwise it will place a false on the boolean stack. |
− | + | false false 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}} | {{Logic}} |
Latest revision as of 15:30, 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 boolean stack, otherwise it will place a false on the boolean stack.
false false 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:
|