<style type="text/css">
        <!--
                @page { margin: 0.79in }
                P { margin-bottom: 0.08in }
        --></style>Am I setting PLTCOLLECTS environment
variable correctly?
<p style="margin-bottom:0in">Do I need to reference the PLTCOLLECTS
variable somehow?</p>
<p style="margin-bottom:0in">
</p>
<p style="margin-bottom:0in">The following is contained in my shell
file: /home/don/Programs/hello-world.sh</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">#! /bin/bash
</p>
<p style="margin-bottom:0in">PLTCOLLECTS=/home/don/.plt-scheme/4.2.1/collects:
</p>
<p style="margin-bottom:0in">/home/don/bin/racket -t
/home/don/.plt-scheme/4.2.1/collects/DG/hello-world.ss
</p>
<p style="margin-bottom:0in">#end of shell file.</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">The following is contained in my Racket
file: /home/don/.plt-scheme/4.2.1/collects/DG/hello-world.ss
:</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">#lang scheme</p>
<p style="margin-bottom:0in">(provide hello-world) 
</p>
<p style="margin-bottom:0in">
</p>
<p style="margin-bottom:0in">(define hello-world (display &quot;HELLO
WORLD&quot;))</p>
<p style="margin-bottom:0in">(newline)</p>
<p style="margin-bottom:0in">(find-library-collection-paths)</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">hello-world</p>
<p style="margin-bottom:0in">;------------------------<br>
</p>
<p style="margin-bottom:0in">RETURNS:</p>
<p style="margin-bottom:0in">don@don-laptop:~/Programs$ sh
hello-world.sh
</p>
<p style="margin-bottom:0in">HELLO WORLD
</p>
<p style="margin-bottom:0in">(#&lt;path:/home/don/.racket/5.2.1/collects&gt;
#&lt;path:/usr/local/racket/collects&gt;)
</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">THE PROBLEM:</p>
<p style="margin-bottom:0in">(find-library-collection-paths) 
</p>
<p style="margin-bottom:0in">returns:</p>
<p style="margin-bottom:0in">;=&gt;
(#&lt;path:/home/don/.racket/5.2.1/collects&gt;
#&lt;path:/usr/local/racket/collects&gt;)
</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">I need it to return something like:</p>
<p style="margin-bottom:0in">(#&lt;path:/home/don/.racket/5.2.1/collects&gt;
#&lt;path:/usr/local/racket/collects&gt;
#&lt;path:/home/don/.racket/4.2.1/collects&gt;)
</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">Maybe it helps if I explain the reason
for my need.  All of my code is in modules under
#&lt;path:/home/don/.racket/4.2.1/collects&gt;.</p>
<p style="margin-bottom:0in"><br>
</p>
<p style="margin-bottom:0in">Many thanks for your comments.</p>