Namespaces. Wierd, man ...
- Posted by axtens at iinet.net.au Dec 12, 2001
- 342 views
Dear List Is the following behaviour what is expected of namespaces? --[ test.ex include test.e as t include test.e t:test = "test" puts( 1, test ) --] --[ test.e global sequence test test = "nothing" --] Running the program outputs "test", which means that the t namespace and the default namespace overlap making test.e's data accessible to both invocations. Wierd... Bruce.