Functions Documentation
View Function Edit Function
Name or
Syntax (or [condition]^1)
Argument List [condition]: Something other than Nil or Nil
^1
Returns condition: the result of oring all of the conditions
Category logical operator
Description Returns True if any the conditions are not Nil otherwise returns Nil.
Example
(block (someCondition) 
	(setq someCondition True)
	(or someCondition Nil)
	)

This will return a True.
Comment Logical functions are very important in if and while functions.