chibi-scheme
chibi-scheme copied to clipboard
Official chibi-scheme repository
(I am sorry if a GH issue is not the best place to ask. Where should I rather be asking this?) I am trying to build a program that I...
char-ready?
`char-ready?` generally returns `#t` although the next `(read-char)` invocation would block.
Hi there, Chibi-scheme seems cool. I'm trying to embed it into a C++ app, and I'm running into issues doing so. I'm sure the issues are my lack of understanding...
I don't think I can fix it by myself, so it's an issue instead. Let's say I want to install `(chibi test)` on Gauche, snow will attempt to install these...
This is less an issue and more 'would be lovely to have, if you could'. Have there been any previous plans for such? What would realistically need to be done...
1. Add `begin` such that `(begin a b)` matches what `a b` matches. This allows a pattern like `(or (begin "foo" "bar") (begin "bar" "foo"))` to match either `"foo" "bar"`...
I'm wrapping a function which returns a variable number of heap allocated pointers. The natural thing seems to be to build a list. Looking at the code generated by chibi-ffi...
Like $0-9, although I'm not sure the history of the last 10 need to be saved. Suggest an approach and I'll try tackling this myself.
It would be nice if there were a way to use the variadic argument machinery from within C, so you don't have to wrap everything scheme.
Hi, I am attempting to implement a deferred calling mechanism for an application I'm going to be writing- Essentially, the flow goes like this- 1. C code initializes and runs...