-
@diasdavid showed me https://github.com/ipfs/js-libp2p-ipfs-nodejs/blob/master/src/index.js
I wonder if there is room for a DSL here (or using either js or go as the DSL) for specifying a libp2p no…
-
It may be possible to support `syntax-case` by porting the implementation from Chibi: https://github.com/ashinn/chibi-scheme/pull/500/files
-
Users should open a gui from mogan, which lists all plugins available for mogan, all plugins installed at local storage, and status of these plugins. Then users select plugin to install, update, remov…
-
It would be nice to have a proper numeric tower, right now there are integers that promote to floats at overflow - but otherwise bigints are not implemented - historically this was to avoid having to …
-
Quoting @Glavin001 from [here](https://github.com/Unibeautify/beautifier-elm-format/issues/2#issuecomment-427663367):
> Language version may become a first class feature for Unibeautify. Prettier's…
-
* SRFI 151: Bitwise Operations (2017)
https://srfi.schemers.org/srfi-151/srfi-151.htm
* SRFI 60: Integers as Bits (2005)
https://srfi.schemers.org/srfi-60/srfi-60.html
* SRFI 33: Integer Bitwi…
-
Hi,
Just did a test on gauche master branch and the SRFI test has started to fail.
```
...
Testing load ... passed.
Testing SRFIs ... …
-
Hello,
this expansion is surprising:
\> (expand '(cond (else (define x 7) x)))
(begin (set! x 7) x)
No difference between cond from chezscheme or from rnrs.
If I understand correctly the …
-
**Reported by: jld on Wed Sep 16 00:20:00 2009**
Consider the following top-level form:
```
(begin
(define v 1)
(let-syntax ((m (syntax-rules () ((_) (set! v 2)))))
(let ((v 3)) (m)))
v)
```…
-
If syntax A (defined with syntax-rules) uses syntax B, considered internal and not to be exported, the syntax expansion will fail as B is unreachable.