Hi,<br><br>Using Racket 4.2.5.16 , I added a library path so that I can use my own files without having to specify the full path (which was crashing in the previous release).<br>So one of my programs looks like this:<br><br>
<div style="margin-left: 40px;">#lang scheme<br><br>(require ATHENS/board2)<br></div><br>where the file is named board2.ss.<br>This was working perfectly fine in good old PLT Scheme, but it seems that the current version is looking for a .rkt file instead, and will not execute:<br>
<div style="margin-left: 40px;"><br>open-input-file: cannot open input file: &quot;C:\Users\orseau\Documents\Projets\Scheme\ATHENS\board2.rkt&quot;<br></div><br>It seems that the old .ss naming does not even work:<br><div style="margin-left: 40px;">
(require &quot;../ATHENS/board2.ss&quot;)<br></div>fails to execute, and also asks for a .rkt file.<br><br>You are probably already aware of that, but what can I do to make things work properly? (preferably not specifying the full path, and not having to rename all my files)<br>
<br>Thanks,<br>Laurent<br><br>