False

Boolean constant representing false (evaluates to 0)

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Int

Quick Summary

Boolean constant representing false (evaluates to 0)

Technical Exegesis...

Boolean constant representing false (evaluates to 0). Predefined constant that represents a false boolean value. Can be used in variable initialization, return statements, or anywhere a boolean value is expected. More readable than using the numeric value 0 directly. Commonly used with conditional statements and boolean variables.

Example

Example.bam
; No example implemented yet