python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
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
call a foreign program to do work in your current program in scheme
I was wondering if you're allowed to call another program you made to do work in a new program you are about to make in scheme, or would I have to copy and paste all the code from the previous program...
wantong.eso
Votes: 0
Answers: 2
How to Multiply a value to the next value in a list in scheme?
Is there a way to multiply each value in a list,
however instead of getting another list (2 4 6) like so,
you get the multiplication of all values together.
(define (multi x y)
(if (null? y)
'(...
wantong.eso
Votes: 0
Answers: 3