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
Best way to export an image in multiple formats using GIMP's batch scripting in the same script?
I am trying to automate creating copies of a GIMP image in different formats, in order to serve them on a website (Using the picture element, offering several versions of an image for compatibility). ...
Michael Gardner
Votes: 0
Answers: 1
How can I write a swap function in scheme?
I have a homework where I have to write a function that will take two variables/numbers and swaps them, then displays the result after swapping (in Scheme), I searched a lot but couldn't find any solu...
kin
Votes: 0
Answers: 2
What is the difference between of code written in DrRacket in "R5RS" vs "#lang racket"?
Is there a difference between in syntax of coding or code will same in both language types?
I wrote a program in #lang racket language but I was supposed to do it in the "R5RS" type.
VIPER
Votes: 0
Answers: 2