Brass Core Plugins

false

Returns a constant that evaluates to false, or false if the conditional also evaluates to false.

Syntax

false()
false(conditional)

Remarks

Use of false as a function is useful if you want to guarantee that the result of a conditional expression evaluates to exactly 1 rather than non-zero.

Examples

Use as a function

.echoln false(0) ; Outputs 1.

Use as a function

.echoln false(-100) ; Outputs 0.

Use as a constant

.echoln false() ; Outputs 0.

See Also