1. Re: namespace modifier
On Friday 08 February 2002 08:45 am, jaspers_post at hotmail.com wrote:
> I want to use some win32lib-functions. I've searched in the
> documentation of both Euphoria and Win32lib but couldn't find it: what
> is a namespace modifier and where do I get it?
Namespacing is new to Eu 2.3. You'll have to download the latest beta version.
It lets you do something like:
include JoesGraphLib.e as joe
include FredsGraphics.e as fred
joe:x = 3
joe:y = 2
fred:x = 99
fred:y = 3
No more collisions between same-named variables.
Regards,
Irv