[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: how to create .exe files from a drscheme program ?



> i'm a really new drscheme programer and i would like to 
> know how i can make an exe within a a drscheme's 
> program...
> (excuse me for my poor english)

You cannot compile DrScheme programs to executables.  

You can instead embed the MzScheme interpreter in a 
C/C++ program, and use the interpreter to run
Scheme code. That may be what you're after.  Look in 
the Inside Mz manual, in the section "Embedding
MzScheme in a Program".

-- Paul