[Felix-language] includes

2013-02-18 Thread john skaller
Oops. I got bitten so I'd better warn: When you include a file like this: println$ "Before"; include "./myfile1"; include "./myfile2"; println "After"; The output is: myfile2 myfile1 Before After That's not what I expected being

[Felix-language] includes

2006-12-26 Thread skaller
Erick raise this issue again on felix-impl, and it needs to be addressed. 1. Unique exhibit of modular code --- This is a law which states that a module can only be put into a program once. You can't write: module A { .. } module A { .. } When the text is explic