ChezScheme icon indicating copy to clipboard operation
ChezScheme copied to clipboard

Chez Scheme

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

I'm not sure if this is a bug or a feature request, but is it at all possible to have native support for Apple Silicon Macs via MacPorts? The current...

enhancement

### What program did you run? ``` Chez Scheme Version 9.5.7 Copyright 1984-2021 Cisco Systems, Inc. > `,@0 ,@0 > `,@v ,@v > ``` ### What should have happened? I...

[RISC-V open-hardware started shipping](https://en.wikipedia.org/wiki/RISC-V#Implementations). [QEMU support RISC V](https://wiki.qemu.org/Documentation/Platforms/RISCV), so it should be simple to start a port.

This program (by @mflatt, from ) creates an engine that calls `list?` on a pair which is initially a list. While the engine is suspended, it uses `set-cdr!` to mutate...

I was trying to build a different project that depends on chez on a freebsd machine. My package manager has chez but for some reason threading is not enabled and...

The following program ```scheme (import (rnrs (6))) (define x (make-vector 1000000000000)) (display (vector-ref x 0)) (newline) ``` crashes with the message "out of memory". In which sense is this conforming...

I resolved this by installing `uuid-dev` (ubuntu 16 LTS). Installation went well afterwards. I had no other trouble during installing. :+1: If feasible, you may like to adjust `./configure` such...

https://langserver.org/ Basically, a language server would allow IDEs to do various useful things with the language, including context-sensitive autocomplete, finding all references to a symbol, and jumping to a procedure's...

enhancement

Running REPL in the docker container, expression editor is not enable in REPL. As reference [the chapter](https://cisco.github.io/ChezScheme/csug9.5/use.html#./use:h1) in the User's Guide document. it need `TERM `environment variable, what is the...

compilation doesn't seem to produce the same output when invoked multiple times on the same source file. even the size of the result is changing: ``` (parameterize ([optimize-level 3] [fasl-compressed...