<div>Thanks, the conditional execution code helps a lot. Does $IFDEF look for an environment or Makefile variable?</div><div><div><div><br></div>Cheers,<div><br></div><div>Andrew Pennebaker</div><div><a href="http://www.yellosoft.us" target="_blank">www.yellosoft.us</a></div>


<br><div class="gmail_quote">On Fri, Oct 14, 2011 at 1:06 AM, Søren Ager <span dir="ltr"><<a href="mailto:soren@agerklanen.dk">soren@agerklanen.dk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">On 2011-10-14 05:17, Andrew Pennebaker wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
In some languages, especially scripting languages,<br>
</blockquote>
<br></div>
Pascal is not a scripted language so it is not really something you want (or should imo) to do in Pascal<div class="im"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Let's say I want to write a dual-purpose Fibonacci program, fib.p. It<br>
should:<br>
</blockquote>
<br></div>
Then you should create 2 .p files 1 for the unit and 1 for the exe (that uses the unit)<br>
<br>
<br>
If you really want to do it you will have to do it with ifdef's:<br>
<br>
{$IFDEF exe}<br>
program ScriptedMain;<br>
{$ELSE}<br>
unit ScriptedMain;<br>
{$ENDIF}<br>
<br>
and do that with everything that is different between exe and unit - not an elegant solution but it should work.<br><font color="#888888">
<br>
<br>
-- <br>
<br>
Hilsen<br>
  Søren</font><div><div></div><div class="h5"><br>
______________________________<u></u>_________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org" target="_blank">fpc-pascal@lists.freepascal.<u></u>org</a><br>
<a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal" target="_blank">http://lists.freepascal.org/<u></u>mailman/listinfo/fpc-pascal</a><br>
</div></div></blockquote></div><br></div></div>