chez-scheme Questions
1
Solved
I'm running Chez Scheme 9.5 and am trying to define a syntax transformer in
a library. Here's an example:
(library (forlib)
(export for)
(import (rnrs (6)))
(define-syntax for
(syntax-rules (...
Greedy asked 13/1, 2019 at 22:57
5
Solved
How to install Petite Chez Scheme on Ubuntu?
I run Ubuntu 15.10 and try to install pcsv8.4-a6le.tar.gz (non-threaded, 64 bit) for Linux.
After having unpacked this tar in /usr/locale, I enter ...
Rainie asked 5/4, 2016 at 9:25
2
I have been using chicken scheme lately and i find it really good, someone suggested that chez scheme is the fastest scheme implementation. So i wanted to try it, but i am not sure how to create co...
Rrhoea asked 2/1, 2018 at 12:40
2
Solved
Now that Chez Scheme is open-source, I wonder how it compares to Racket and other Schemes or languages in terms of performance, so that one could make informed choices about using them in one's pro...
Chiliad asked 31/7, 2017 at 23:18
1
Consider this bit of Chez Scheme code:
(import (chezscheme))
(define (list-enumerate ls val proc)
(let loop ((ls ls) (return? #f) (val val))
(if (or (null? ls)
return?)
val
(call-with-value...
Trictrac asked 4/3, 2010 at 11:13
2
Solved
Does R6RS or Chez Scheme v7.9.4 have a library function to check if a list contains duplicate elements?
Alternatively, do either have any built in functionality for sets (which dis-allow duplicate...
Mair asked 3/3, 2010 at 18:59
1
© 2022 - 2024 — McMap. All rights reserved.