Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
500 B
Plaintext
Raw Permalink Normal View History

{
"name": "OR",
"type": "operator",
"groups": ["Operators"],
"description": "Returns TRUE when condition a or b is true.",
"arguments": [{
"arg": "a",
"description": "condition"
}, {
"arg": "b",
"description": "condition"
}],
"examples": [{
"expression": "4 = 2+2 OR 1 = 1",
"returns": "TRUE"
}, {
"expression": "4 = 2+2 OR 1 = 2",
"returns": "TRUE"
}, {
"expression": "4 = 2 OR 1 = 2",
"returns": "FALSE"
}],
"tags": ["condition"]
}