Re: include limit
- Posted by Liquid-Nitrogen Software <nitrogen_069 at HOTMAIL.COM> Jun 06, 1999
- 389 views
>I've discovered the nested include files are limited to a depth of about >10. At the time, I was trying to work out how to do an unlimited number >of dynamic includes in an interactive Euphoria shell. >An example of a program running into this limit is Rod Jacksons E! >interactive interpreter. You can only type 11 statements before running >into the "includes are nested too deeply" error... Rod might have to find >a different way of dynamically generating code. (if he does, please >share it!) I think the best way to do it would be to write all the code to a single file, It's easier to keep track of everything, and you don't have to worry about that limit. IE: Write all code to "temp.ex" then execute it. Or would that not quite work with the way E! works? -Mark.