Duy Nguyen
Duy Nguyen
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...
I was trying to run 159 tests and found failed test cases, e.g. ``` $ ./gxi --lang r7rs R7RS Scheme in Gerbil v0.16-DEV-478-g695a5915 on Gambit v4.9.3 > (import (std srfi...
The `inv` example in the gauche.partcont is useful, but its use of high order functions also makes it a bit harder to get (especially when you are already struggling with...
Make a multi-line expression, but don't evaluate. Ctrl-Z to move gosh to background, then bring it back foreground again. All the control keys stop working. I guess we need to...
My emacs muscle fired up the other day and I accidentally typed `C-M-f` which is not supported by gosh. Moving by sexp would make the editing experience much better. Though...
One of the things I found lacking when I used gauche.parseopt. `make-option-parser` already has enough information to print the whole command syntax, but we still have to do it manually....
I did something funny today. Probably not a big deal, but could be potential issue. I wanted a clean start because my installation accumulated so many gauche versions, so I...
Reference section 3.4 Debugging > Gauche doesn’t have much support for debugging yet. The idea of good debugging interfaces are welcome. and since Gauche is approaching 1.0 (and I happen...
def.sld contains ``` (define-library (def) (import (scheme base)) (include "def.scm")) ``` and def.scm contains ``` (define reverse-rconj (case-lambda (() '()) ((lst) lst) ((lst x) (cons x lst)))) ``` And importing...
This may be a stupid idea, but anyway I've been opening gauche info files manually by C-u C-h i in emacs. I just found out today I could just add...