Jan Brosius wrote:
>>
> Is it possible to tell how, or can you give me a site where I can find
> how to do it?
I know that cmucl, gcl, and sbcl will compile to native code. You can
start with describe(compile) and describe(compile_file) to learn more.
Whether you see any speed up or not depends on what you are doing. Lots
of the core routines are already compiled to machine code, so compiling
may not make a difference. Numerical code might be sped up quite a bit
if you tell the compiler enough, like declaring variables to be float.
Ray