Parameters & Returns
Parameters
This function takes no parameters.
Returns
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.