Default Local vs Explicit declaration of locals
Hi, I'm trying to understand how best to limit my risk with regards to local scope in functions. In my understanding my options for limiting the potential to pollute the Here scope from within a Function execution are to either declare my local variables or use Default Local. However, each of these has some problems: Default Local:Referencing values may be context dependent, since names that haven...