Or: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
Test3 = x OR y | Test3 = x OR y | ||
Print "Logical:" | Print "Logical:" | ||
Print " x > 0 | Print " x > 0 or y < 10 = " & Test1 | ||
Print " x > 0 | Print " x > 0 or y > 10 = " & Test2 | ||
</pre> | </pre> | ||
Line 25: | Line 25: | ||
<pre> | <pre> | ||
Logical: | Logical: | ||
x > 0 | x > 0 or y < 10 = True | ||
x > 0 | x > 0 or y > 10 = True | ||
</pre> | </pre> | ||
== Related Items == | == Related Items == | ||
[[and| | [[and|And]], [[eqv|Eqv]], [[imp|Imp]], [[not|Not]], [[xor|Xor]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Logical Operators]] | [[Category:Logical Operators]] |
Revision as of 01:30, 24 August 2012
result = x Or y
Description
Or returns the logical disjunction of two expressions. result is TRUE, if one or both expressions x and y evaluate to TRUE, otherwise, result is FALSE.
Example
Rem Or Example 'Or performs logical and bitwise disjunction Dim Test1, Test2, Test3, x, y x = 1 y = 5 Test1 = x > 0 Or y < 10 Test2 = x > 0 Or y > 10 Test3 = x OR y Print "Logical:" Print " x > 0 or y < 10 = " & Test1 Print " x > 0 or y > 10 = " & Test2
Output
Logical: x > 0 or y < 10 = True x > 0 or y > 10 = True