User Tools

Site Tools


crpl:docs:or

Differences

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

Link to this comparison view

Next revision
Previous revision
crpl:docs:or [2013/01/14 19:01] – created virgilwcrpl:docs:or [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-TODO+ 
 +<- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#logical_operators|Logical Operators]] 
 +=====  or  ===== 
 + 
 +or 
 + 
 +=== Description === 
 +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. 
 +=== Examples === 
 +<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.1358190101.txt.gz · Last modified: 2025/02/14 14:56 (external edit)