Hey all.<br><br>I am required to periodically run a ACL2 program provided to me. Currently, I open it up in DrRacket and just hit the run button, but I was hoping there was some method of automating this process. (It&#39;s terribly slow)<br>

<br>I attempted to run the file through racket, but I get:<br><br>&quot;default-load-handler: expected a `module&#39; declaration for `main&#39;, found: something else in: #&lt;path:/home/nils/Dropbox/code/SE1/PSP/main.lisp&gt;<br>

<br> === context ===<br>standard-module-name-resolver&quot;<br><br>I attempted to use the various flags, such as -r, -u and -f, some of which give me an identical error, and others give me:<br><br>&quot;reference to undefined identifier: in-package&quot;<br>

<br>I attempted to also append the line &quot;#lang ACL2&quot; to the beginning of the file, but it did not help.<br><br>Anyone have any advice?<br><br>Thanks, Nils<br><br>Also, here is the file:<br><br>main.lisp<br>&quot;(in-package &quot;ACL2&quot;)<br>

<br>(include-book &quot;psp&quot;)<br><br>(set-state-ok t)<br>(main &quot;input/&quot; &quot;output/&quot; state)&quot;<br>