<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16825" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face="Courier New" size=2>It appears that modules are not run in the 
same order as they are required. This can give trouble when modules have side 
effects, for instance one module writing a file and the other one reading that 
file. As an example:</FONT></DIV>
<DIV><FONT face="Courier New" size=2></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>File module-sequence1.ss<BR>#lang 
scheme<BR>(printf "module 1~n")</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>File module-sequence2.ss<BR>#lang 
scheme<BR>(printf "module 2~n")</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>File module-sequence12.ss<BR>#lang 
scheme<BR>(require "module-sequence1.ss")<BR>(require 
"module-sequence2.ss")<BR>;Displays:<BR>;module 2<BR>;module 1</FONT></DIV>
<DIV><FONT face="Courier New" size=2></FONT>&nbsp;</DIV>
<DIV><FONT face="Courier New" size=2>Is it possible to run modules in the order 
they are required?</FONT></DIV>
<DIV><FONT face="Courier New" size=2>(may be by inserting 'inverse' 
somewhere&nbsp;in #%module-begin?)</FONT></DIV>
<DIV><FONT face="Courier New" size=2>Jos</FONT></DIV></BODY></HTML>