2022-03-19 09:00:56 +01:00

19 lines
346 B
Plaintext

{
"name": "NOT",
"type": "operator",
"groups": ["Operators"],
"description": "Negates a condition.",
"arguments": [{
"arg": "a",
"description": "condition"
}],
"examples": [{
"expression": "NOT 1",
"returns": "FALSE"
}, {
"expression": "NOT 0",
"returns": "TRUE"
}],
"tags": ["negates", "condition"]
}