schemepunk icon indicating copy to clipboard operation
schemepunk copied to clipboard

A batteries-included extended standard library for seven R7RS Scheme dialects.

Results 4 schemepunk issues
Sort by recently updated
recently updated
newest added

I suggest the following internal representations for `read-json` and `write-json`: Represent JSON true and false with Scheme true and false (i.e. `#t` and `#f`) rather than with symbols. I also...

I'm missing a curry function in the function module. I'm using this: ```scheme (define curry (lambda (f . c) (lambda x (apply f (append c x))))) ``` What do you...

When I try to compile schemepunk using CHICKEN Scheme I get the following compilation error: ``` building schemepunk /usr/local/sw/versions/chicken/5.3.0/bin/csc -host -D compiling-extension -J -s -regenerate-import-libraries -setup-mode -I /usr/local/sw/src/scheme/chicken/eggs/schemepunk -C -I/usr/local/sw/src/scheme/chicken/eggs/schemepunk...