Modules ... thoughts<br><br>Any opinion about and "endmod." declaration:<br><br>Proposal<br><br>The file myapp.erl might contain<br><br> -module(foo).<br> ....<br> ....<br> -endmod.<br><br> -module(bar).<br>
...<br> ...<br> -endmod.<br><br>Compiling this produces<br><br>myapp.beam<br><br>loading myapp.beam loads all the code in foo, bar, ..., this<br>has several advantages:<br><br> 1) distribute only one file<br> 2) modules in file cannot live a life of their own and become
<br> separated<br> 3) code loading is faster<br><br>/Joe<br><br><br>