Re: confusion about include
- Posted by Jerry_Story Aug 07, 2010
- 1369 views
In the good old days when Euphoria was simple, 'include' included files for the entire rest of the program. So I could do this:
-- main file include GtkEngine.e include myfile1.e -- GtkEngine.e would be recognized in each of these files. include myfile2.e include myfile3.e -- bunchuv code -- end main file
Now it's different:
-- main file include GtkEngine.e include myfile1.e -- GtkEngine.e must be included in each of these files. include myfile2.e include myfile3.e -- bunchuv code -- end main file
Is there a way to do 'include' in Euphoria 4.0 that works the same way as 'include' in Euphoria 3.1?