Author | Message | Time |
---|---|---|
idoL | What's the difference between variables that have module-level scope and procedure-level scope? | July 28, 2004, 9:22 AM |
The-FooL | Module-level scope variables apply to anything within the module. Procedure-level scope variables apply only to the procedure/routine they are used in, and are erased when the procedure ends. Global scope variabls can be used within the entire program. | July 28, 2004, 11:23 AM |
idoL | Thanks for that. | July 30, 2004, 7:08 AM |