-
I was wondering if Chibi supported limiting I/O (e.g. by restricting filesystem and/module importing), for embeddong in an app that has security concerns.
-
R7RS states:
https://small.r7rs.org/attachment/r7rs.pdf
> An obj which is not a list is returned unchanged.
but Cyclone `list-copy` procedure rejects it.
```scheme
cyclone> (list-copy 'a…
-
Hello,
According to R7RS, delay is supposed to be used to implement lazy evaluation - but it doesn't say it "must not" evaluate its argument... In page 19, it is said that implementations may do "i…
-
Hi all,
I was wondering if it would be possible* to disable interop with JS and the web APIs from the BiwaScheme side (while still having access to the BiwaScheme API to obtain values)?
* (at leas…
-
Likewise, typing `1/2@1` at the prompt of the repl gives an error.
-
Tested: https://github.com/ashinn/chibi-scheme/commit/36c3471fa7f0f0b25761bb377328ae4f544c05e0
Chibi-scheme does not report error if `raise` was not caught any exception handler. This behaviour doe…
-
Is this intentional?
```
;;; Works:
(cond-expand
(chibi
(import (scheme base)
(scheme write))))
(cond-expand
(chibi
(display "Hello world")
(newline)))
;;; D…
-
This is a simplified code from '(chibi monad environment)'
```scheme
(import (scheme base))
(define-syntax abc
(syntax-rules ()
((_ n ((field get put) ...))
(define-record-type n
…
-
hi
There is a great introduction text and feature list about cyclone on the website https://justinethier.github.io/cyclone/. It describes in detail how cyclone is built, and points out its technical …
-