EndIf

Closes an If conditional block

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Closes an If conditional block

Technical Exegesis...

Closes an If conditional block. Marks the end of an If/ElseIf/Else structure. Required to properly terminate every If statement, regardless of whether ElseIf or Else clauses are present. Program execution continues with the code following EndIf after the conditional block completes.

Example

Example.bam
; No example implemented yet