Or

From MultiCharts
Revision as of 13:12, 13 February 2012 by Admin (talk | contribs) (Reverted edits by 176.8.90.7 (talk) to last revision by 194.84.116.138)
Jump to navigation Jump to search

A logical (Boolean) operator that returns True if one or both of its operands are true. Logical operators are used in logical (Boolean) expressions that operate with true/false values.

Usage

E1 Or E2

Where: E - true/false expressions

Example

2=1 Or 2>2   will return a value of False

True Or False Or False   will return a value of True