Re[2]: Yay for me, found an interpreter bug!
- Posted by akusaya at gmx.net Nov 02, 2003
- 558 views
DP> However, you can get it to work as you'd like to , namely DP> including the file twice. All you have to do is place a copy of DP> the include file in two different folders and include it thus ... DP> include one\namespacebugtest.e as TEST1 DP> include two\namespacebugtest.e as TEST2 DP> and this will work just fine then. That is, you will have two DP> instances of the local variables defined in the include file. DP> A kludge, but it works. Or if you don't want to copy, just use include namespacebugtest.e as TEST1 include .\namespacebugtest.e as TEST2 include .\.\namespacebugtest.e as TEST3 include .\.\.\namespacebugtest.e as TEST4 Each of them will have different instance.