Local

Declares a variable with local scope (within current function or method)

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Declares a variable with local scope (within current function or method)

Technical Exegesis...

Declares a variable with local scope (within current function or method). Syntax is Local name:Type [= initialValue]. Local variables exist only within the function or method where they're declared and are destroyed when the function exits. Type can be Int, Double, String, or a custom Type. Initial value is optional.

Example

Example.bam
; No example implemented yet