:cyclone: A brand-new compiler that allows practical application development using R7RS Scheme. We provide modern features and a stable system capable of generating fast native binaries.
[justin@justin-pc schemepunk]$ cyclone hello.scm
Error: Identifier is exported but not defined:
chain
Error: Unbound variable(s):
(_)
It looks like there is a problem compiling syntax.sld. The schemepunk author pointed out the include on line 195. The issue seems to be that the include is being expanded with a lambda instead of directly within the begin:
Attempting to use the schemepunk library with the following test file:
However, compilation raises the following error:
It looks like there is a problem compiling
syntax.sld
. The schemepunk author pointed out the include on line 195. The issue seems to be that the include is being expanded with a lambda instead of directly within thebegin
: