Re: My not-quite obsolete namespace parser
- Posted by Robert Craig <rds at RapidEuphoria.com> May 14, 2002
- 388 views
jbrown writes: > In fact, when I make it > > include get.e > include ../euphoria/get.e --really /opt/euphoria/get.e > > it still runs, despite the fact that ../euphoria/get.e does not exist! >From REFMAN: > ... an include statement will be quietly ignored if a file with > the same name has already been included. That means your second include is ignored because it is trying to include a file with the name "get.e", and "get.e" has already been included. The second get.e doesn't exist, but Euphoria doesn't try to open it. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com