_Scripts under Windows_

Under Windows, you can create executable batch files containing
Scheme code.  Such batch files can be run from the command
prompt or loaded directly into DrScheme.

A batch file has the extension .BAT.  The form of the batch
file is

        ; @echo off
        ; mzscheme.exe -r %1 %2 %3 %4 %5 %6 %7 %8 %9
        ; goto :end

        <Scheme code here>

        ; :end


Although the above works under NT, you should use this instead:

        ; @echo off
        ; mzscheme.exe -r %*
        ; goto :end

        <Scheme code here>

        ; :end
