Alex d7ffe0b7ec
DelazJ bonification
Co-authored-by: Harrissou Sant-anna <delazj@gmail.com>
2022-01-11 11:17:49 -05:00

25 lines
490 B
Plaintext

{
"name": "IS NOT",
"type": "operator",
"groups": ["Operators"],
"description": "Returns 1 if a is not the same as b.",
"arguments": [{
"arg": "a",
"description": "value"
}, {
"arg": "b",
"description": "value"
}],
"examples": [{
"expression": "'a' IS NOT 'b'",
"returns": "1"
}, {
"expression": "'a' IS NOT 'a'",
"returns": "0"
}, {
"expression": "4 IS NOT 2+2",
"returns": "0"
}],
"tags": ["compare", "same", "different"]
}