Scheme: Save preprocessor output for all compiled files
This is a wrapper for the MSVC compiler (cl.exe) to generate a .i file as well as a .obj. Compiled with Bigloo.
(module cl-wrap
(main main))
(define (quote-args args)
(let loop ((args args)
(result ""))
(if (null? args)
result
[...]

