User Tools

Site Tools


crpl:docs:or

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
crpl:docs:or [2014/01/15 22:36] – Added some more info Clean0nioncrpl:docs:or [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~+
 <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#logical_operators|Logical Operators]] <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#logical_operators|Logical Operators]]
 =====  or  ===== =====  or  =====
  
-^Arguments^Result^Notation^ +or
-|Two items on the stack|The conditional OR of the two arguments |''b1 b2 -- b3 ''+
  
 === Description === === Description ===
 Pops two items from the stack, treats them as boolean values, 'ors' them, and pushes 0 or 1 back to the stack. Pops two items from the stack, treats them as boolean values, 'ors' them, and pushes 0 or 1 back to the stack.
  
-If either items are TRUE, or both are TRUE, it returns TRUE to the stack. If both items are FAlSE, FALSE is returned to the stack.+If either items are TRUE, or both are TRUE, it returns TRUE to the stack. If both items are FALSE, FALSE is returned to the stack.
 === Examples === === Examples ===
-<code>example goes here</code> +<code 4RPL> 
 +TRUE  TRUE  or Trace   #prints out 1 (TRUE) to the tracelog 
 +TRUE  FALSE or Trace   #prints out 1 (TRUE) to the tracelog 
 +FALSE TRUE  or Trace   #prints out 1 (TRUE) to the tracelog 
 +FALSE FALSE or Trace   #prints out 0 (FALSE) to the tracelog</code> 
  
crpl/docs/or.1389825360.txt.gz · Last modified: 2025/02/14 14:56 (external edit)