|
Functions by Category Functions by Alphabetical list
Returns the logical negation of the expression to its right. Examples: if (not Position) {
#we do not have a position - this is the same as unless (Position)
Output('no position');
}
else {
Output('we have a position');
}
Related functions:
|