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

It would make my life easier to create simple blog engine without servlet additional logic. Just serving html's with images and js'es. https://github.com/ashinn/chibi-scheme/blob/67fdb283b667c8f340a5dc7259eaf44825bc90bc/lib/chibi/net/http-server.scm#L142

Just by commenting that one line I can jump with http-server performance from 130-160 requests / second to 612 request / second. https://github.com/ashinn/chibi-scheme/blob/67fdb283b667c8f340a5dc7259eaf44825bc90bc/lib/chibi/net/http-server.scm#L57

I'm testing chibi's SRFI 231 implementation, but I'm not really confident I'm doing it correctly. I'm trying ``` (test-values (values (make-interval '#()) (make-interval '#(1 1))) (interval-projections (make-interval '#(0 0) '#(1...

[Some modules](http://synthcode.com/scheme/chibi/lib/chibi) like `(chibi show)` are not available on the website http://synthcode.com/scheme/chibi/#h2_StandardModules

Given a file `bug.scm` with the contents: ``` (import (scheme base) (scheme write) (srfi 193) (chibi filesystem)) (change-directory "/") ;

srfi-231: nonempty intervals and generalized arrays: index-* and miscellaneous tests: ........................ 24 out of 24 (100.0%) tests passed in 0.001341104507446289 seconds. interval tests: ....................................................... ................... 74 out of 74 (100.0%)...

I believe `array-copy` is implemented as `array-copy!`, re-entering a getter's continuation affects results that have already been returned. Example: ``` heine:~/programs/chibi-scheme> cat test-cont1.scm (import (scheme base) (scheme write) (srfi 231))...

How are byte order differences handled when loading images? ```C #define SEXP_IMAGE_MAJOR_VERSION 1 #define SEXP_IMAGE_MINOR_VERSION 1 struct sexp_image_header_t { char magic[8]; short major, minor; // ... }; ``` It seems...

Implement delimited continuations on top of the existing primitive %call/cc. Space leaks are prevented through a new primitive %abort. See issue #885.