ChezScheme icon indicating copy to clipboard operation
ChezScheme copied to clipboard

Chez Scheme

Results 192 ChezScheme issues
Sort by recently updated
recently updated
newest added

Chez scheme is a real pleasure to use, I'm especially fond of the expression editor on the command line for some interactive coding. But I have one question — I...

Is there a way to mmap some memory (a file for example, I can do this simply via the ffi) and use that memory without copying in a bytevector? Some...

Hi all, I'm a new hand in the Chez Scheme compiler system. But I need to understand the BOOT file format because of my work. Therefore, I would like to...

I have found an error in tspl4 that isn't included in the errata. I couldn't find where to report it so I figured I'd just do it here. I'm reading...

Hello, everyone! After I input Chinese, when I modify the previous characters, the display will become a mess. For example, you make the following changes: `(display "你好") ;--> (display "Hello你好")`...

I'm wishing to embed chez in a c++ application. Is it possible to initiate multiple independent scheme sessions? I see in https://github.com/cisco/ChezScheme/blob/b7f161b/c/scheme.c#L38 that the `heap_state` is static. So.. I guess...

enhancement

http://cisco.github.io/ChezScheme/csug9.5/system.html#./system:h10 says about dates: > As for time objects, a nanosecond is an exact integer less than 109. A date-object second is, however, an exact nonnegative integer less than 62....

documentation

In section 11.4 of the Chez Scheme User's Reference, compile-time properties are introduced, allowing to attach properties to identifiers in a lexically scoped way. In the current implementation, the identifier...

enhancement

Currently, the x86-64 call sequence is rather involved. From `c/fasl.c`: ```c static void x86_64_set_jump(void *address, uptr item, IBOOL callp) { I64 disp = (I64)item - ((I64)address + 5); /* 5...

enhancement

It would be ideal if the appropriate code is pulled or backported from the [Racket backend fork](https://github.com/racket/ChezScheme) of Chez Scheme to allow compiling on aarch64 ARM64 architecture. I did finally...

enhancement