If

Begins a conditional block that executes code if a condition is true

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Begins a conditional block that executes code if a condition is true

Technical Exegesis...

Begins a conditional block that executes code if a condition is true. Evaluates an expression and runs the following code block only when the condition evaluates to true (non-zero). Must be paired with EndIf to close the block. Can be combined with ElseIf and Else to handle multiple conditions or provide alternative code paths.

Example

Example.bam
; No example implemented yet