chibi-scheme
chibi-scheme copied to clipboard
Official chibi-scheme repository
https://synthcode.com/scheme/chibi/ The manual there does not have `(chibi shell)`. Would it be possible to re-generate the documentation via CI? Or maybe even have two branches, one for the most recent...
When running `snow-chibi reg-key` I get: ``` ERROR in cddr on line 8 of file /usr/local/share/chibi/init-7.scm: cdr: not a pair: () called from sxml-display-as-text on line 161 of file /usr/local/share/chibi/chibi/sxml.scm...
The files in the `doc` directory use the following three URLs to link to Chibi's home page: ``` http://code.google.com/p/chibi-scheme/ http://synthcode.com/wiki/chibi-scheme/ https://github.com/ashinn/chibi-scheme/ ``` Which is the preferred one?
ERROR on line 41 of file /usr/local/share/chibi/srfi/159/../166/color.scm: undefined variable: make-state-variable I realize 159 is withdrawn in favor of 166, but it's in strange position of being voted on as being...
```scheme (import (scheme base) (scheme eval)) (eval (list + 1 2) (environment)) ``` The above `eval` should (and does) return 3. It is essentially the same as `(apply + (list...
https://github.com/ashinn/chibi-scheme/blob/e93b71990c1135ba3cffaa5844f2b8909715119a/sexp.c#L3336-L3338 I see that there are circumstances in which literal pairs become immutable, but I can’t work out when. Specifically, nothing I can think of like this works as expected...
If shared object exist, start chibi-scheme-static show follow error: ``` ERROR: couldn't find builtin library: "/usr/local/lib/chibi/srfi/69/hash.so" ``` Maybe could skip function `file_exists_p` if sexp_find_static_library fail and path end with ".so"...
I'm looking to embed chibi-scheme into an embedded system on bare metal (no OS, or a RTOS) but am running into problems related to ``, `-dl`, and `-lutil`. Is it...
Inspired by PR #888 , ping @smazga The R7RS definition of the `exit` procedure explicitly supports giving it objects other than integers or booleans. Plan 9 has exit strings, so...
``` (import (scheme base) (scheme read) (scheme write) (scheme file)) (write (read-line (open-input-file "foo.txt"))) ``` Then: ``` % echo "foo\rbar" >foo.txt % ./tools/chibi-run testcase.scm "foo\rbar" ``` R7RS says about `read-line`,...