
badkins
2021-9-7 14:25:29
Is there a functional Chez interpreter/compiler within the Racket source tree? I’m working through syntax-parse
, and I’d like to compare a plain vanilla Scheme to Racket w/ syntax-parse
on some examples. Rather than installing a standalone Chez, I wondered if it was accessible already.

mflatt
2021-9-7 14:28:22
If you’ve built from a Git checkout, then you can go to racket/src/build/cs/c/ChezScheme
and use make run
. You can also use sudo make install
there to install in /usr/local/bin
.

badkins
2021-9-7 14:29:55
Awesome - thanks!