RE: My not-quite obsolete namespace parser
- Posted by Derek Parnell <ddparnell at bigpond.com> May 13, 2002
- 409 views
Robert Craig wrote: > jbrown writes: > > ... Finally, my version fixes a bug which RDS still has: > > > > include ./eufile.e > > include eufile.e > > > > are 2 seperate files for RDS, but my parser sees > > them as one and the same. > > In Euphoria, if you include the same file twice, > the second include statement is quietly ignored. > I tried your example above, in both DOS and Linux, > and it worked fine. I'm not sure what you consider to > be a bug. > Robert, try this: In file 'a.e' enter these three lines... global myval myval = 1 ? 1 In the file 'b.ex' enter these two lines... include ./a.e include a.e Now execute b.ex. When I do this I get ... 1 1