hi,<br>does fpc support unit names with more than one dot or is planned?<br><br>in delphi 7 you can compile this:<br><br>// unit main.dpr<br>program main;<br><br>uses<br>  test.sec;<br><br>begin<br>  test.sec.doit;<br>end.
<br><br>// unit test.sec.pas<br>unit test.sec;<br><br>interface<br><br>procedure doit;<br><br>implementation<br><br>procedure doit;<br>begin<br>  writeln('anda');<br>end;<br><br>end.<br><br>thanks,<br>marianop<br><br>