python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Literals in syntax-rules don't work in libraries in Scheme
I want to define new syntax. If I define it without a library, just
(define-syntax sample1
(syntax-rules (:times)
[(_ n :times body ...)
(list n (sample1 body ...))]
[(c body ...)
...
VOID404
Votes: 0
Answers: 2
Capturing the output of an external call as a string (in Chez Scheme)
Using Chez Scheme, I tried to capture the output of an external command into a string port (see https://www.scheme.com/csug8/io.html):
(define output
(with-output-to-string (lambda () (system "...
AlQuemist
Votes: 0
Answers: 2