Re: Re[2]: Yay for me, found an interpreter bug!
- Posted by Derek Parnell <ddparnell at bigpond.com> Nov 02, 2003
- 536 views
----- Original Message ----- From: "Al Getz" <Xaxo at aol.com> To: <EUforum at topica.com> Subject: RE: Re[2]: Yay for me, found an interpreter bug! > > Hello Aku, > > I havent found this to work right. > > Here are the two files used to test: > > --tn.ew------------- > global atom x > -------------------- > > --testincl.ew---------------- > include file.e > > include tn.ew as Test1 > include .\tn.ew as Test2 > > Test2:x=3 > Test1:x=2 > > ?Test2:x --prints a "2" > > sleep(4) > --------------------------- > > The test is simple: if the printout is a "3" > the two files were treated as separate instances, > but if not, a "2" is printed out. Since a "2" > was indeed printed out, they were not treated > as separate instances. > > What Eu version/platform are you running? > Mine is Eu2.4 on XP. > Wierd! Using "include .\tn.ew as Test2" does not work, but using "include ./tn.ew as Test2" does work. -- Derek