Not

Logical NOT operator - inverts a boolean value

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Int

Quick Summary

Logical NOT operator - inverts a boolean value

Technical Exegesis...

Logical NOT operator - inverts a boolean value. Returns 1 (true) if the operand is 0 (false), and returns 0 (false) if the operand is non-zero (true). Used to reverse the meaning of a condition. Commonly used with If statements to test for the opposite of a condition or to check if something is false.

Example

Example.bam
; No example implemented yet