cyclone icon indicating copy to clipboard operation
cyclone copied to clipboard

: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.

Results 74 cyclone issues
Sort by recently updated
recently updated
newest added

Presently macros are not imported in the same manner as other objects, causing import-set functionality (EG: rename, except, etc) to not work for them.

I started down this path after seeing failures when trying to use `cyclone format`. I installed `cyclone-bootstrap` as directed in the documentation for the Mac since the brew installation is...

Otherwise, the Cyclone compiler build from cyclone.scm using the installed Cyclone version will use the libcyclone.a and libcyclonebn.a file from /usr/lib instead of the one compiled as a prerequisite by...

I installed some libs in subdirs of my HOME-Dir. Then using -I or -A for cyclone gives the error message ``` Error: Unable to open file: "/usr/share/cyclone/srfi/152.sld" ``` The path...

Add the ability to unit test the C code runtime. This can start small and increase in size over time.

EG: ``` > #i1/3 0.3333333333333333 > #e1/3 1/3 ;; NOTE: Would be 0.333333 until rational numbers are supported ```

It seems like the `strdup` and `memcpy` are doing the same work twice for `name`. Is there a more efficient way to implement this, in terms of both CPU and...

Hello, I am attempting to build Cyclone on FreeBSD-14 (CURRENT) on amd64. cyclone-bootstrap builds successfully, and I have created a FreeBSD Port of that (in my local working Ports tree),...

`log` is not defined on negative real numbers; if a negative value `z` is passed the result should be computed as though `log` received the complex number `z+0i`. Consider: ```...

There is a wealth of information here: https://docs.scheme.org/surveys/ Review Cyclone output and compare with other schemes for accuracy.