Hi all,
As in the subject states, I am writing a code library. And, in order to keep things tidy and avoid variable, procedure, function names... collisions with whatever any operator could have declared outside the library...
Is there any way to add a forced qualifier?
I could insert all variables inside a RECORD, but that would leave procedures and functions out of this, plus I could not initialize the variables at declaration time.
I could set a prefix, but it would be super that the programmers who would use it would need to add the module name in front of the functions and variables names.
Is enforcing that possible?
Thank you in advance.