main module and scoping
If I have the following main module...
Is there any syntax for accessing the module-level variable? I know if I was in a module I could use modulename.b, but what about here?
- Code: Select all
dim b as byte
sub main()
dim b as byte
// access module-level b??
end sub
Is there any syntax for accessing the module-level variable? I know if I was in a module I could use modulename.b, but what about here?