Re: confusion about include
- Posted by kinz Aug 07, 2010
- 1265 views
said...
Version 3 Scope
A symbol is either private or global. It is private if it does not have the global keyword before the declaration.
private | : | Can be accessed by code in the same enclosing block as the declaration and by code in blocks defined inside the enclosing block. |
global | : | Can be accessed by anything in the application. |
Ok, but v3 docs say about "local" symbols too. And there are the rules about local and global symbols in a file. The local symbol has priority over the global one.
What do we have on that matter in v4?
kinz