What's the proper scheme file extension??
Files of the programming language Scheme are by convention either of the extension .scm or .ss. I'm interested in w...
How do I do exponents in Scheme??
pow, ^, ** doesn't work, and Scheme seems to be too common a word to be able to effectively google it. ...
Installing MIT Scheme on Windows 10 — 'Requested Allocation is too large'?
I'm trying to get Scheme going so I can work through "Structure and Interpretation of Computer Programs" but I keep ...
Map, Filter, Foldr in DrRacket/Scheme?
Programming language: Scheme/DrRacket We're currently going over map, filter, and foldr in my comp sci class. I und...
How to turn a list of string into one string in scheme??
For example I have (list "a" "1" "b" "2" "c" "3"). Now I want to turn this list into one "a1b2c3". How do I do tha...
I got “scheme application not a procedure” in the last recursive calling of a function?
so here is the code: (define (time-prime-test n) (newline) (display n) (start-prime-test n (runtime))) (defi...
How to return the parameter value in Racket??
I have to create a Racket scheme that would return the reverse of a list. I cannot use the built in reverse method o...
How to store user input into a list in Scheme??
I need to be able to take input from a user (store it in a list) and and print it to the screen to prove it was stor...