chibi-scheme icon indicating copy to clipboard operation
chibi-scheme copied to clipboard

Official chibi-scheme repository

Results 105 chibi-scheme issues
Sort by recently updated
recently updated
newest added

I haven't been able to figure out why these fail: ``` 1 failure (7.7%). 12 errors (92.3%). FAIL: (array-every equal? (list*->array 2 '(((a b c) (1 2)))) (list->... assertion failed...

Foreign functions bound using `sexp_define_foreign` are required to have a signature that only includes the context, a reference to the function itself (it's not completely clear to me what the...

This library seems to have been stable for six years but has no documentation

``` > (< -3-4i 0) #f > (< 0 -3-4i) #f > (< -3-4i -3-4i) ERROR on line X: invalid type, expected Number: -3-4i > (< 0 -3-4i -3-4i) ERROR...

concatenate! does not behave as specified in SRFI 1. It breaks if the list contains an empty list, except when it's the last element. ```scheme (concatenate `(() (1))) ;;; =>...

Hi there, In https://github.com/ashinn/chibi-scheme/blob/master/main.c#L238, in sexp_add_import_binding(), I see that you declare 2 garbage-collected variables, but then release 3 of them. I'm still not 100% familiar with how everything works in...

Hi there, I'm writing a GUI application where I'd like to use Chibi-Scheme as an embedded interpreter, with it directly available to the user through a REPL implemented in a...

Earlier today, I noticed a bug when I inputted the following forms in the REPL: ```scheme (import (scheme base)) (equal? '#1=(#1# . #1#) '#2=(#2# . #2#)) ``` Instead of this...

Ticket #42 mentions `sexp_copy_context` as an API for copying Chibi contexts for fast-loading. This ticket was closed as 'fixed' with a comment that suggests this feature was implemented, and the...