Scheme is a functional programming language in the Lisp family, closely modeled on lambda calculus with eager (applicative order) evaluation.
I would like to include all the functions defined in a given racket file so that I get the same …
include scheme racketI've caught the bug to learn functional programming for real. So my next self-study project is to work through the …
functional-programming lisp clojure scheme sicpI'm trying to get Scheme going so I can work through "Structure and Interpretation of Computer Programs" but I keep …
installation scheme sicp mit-schemeI was reading about the prime test algorithm and found the AKS primality test. Could this algorithm be implemented in …
c++ scheme implementation primality-test(define (subtract-1 n) (string-append "Number is: " (number->string n)) (cond [(= n 0) "All done!"] [else (subtract-1(- n 1))])) I keep …
scheme racket racket-student-languagesWhile reading "The Seasoned Schemer" I've begun to learn about letrec. I understand what it does (can be duplicated with …
functional-programming lisp scheme racket letrecI'm using the Dr. Racket development environment and the language definition #lang scheme to do work for a course. However, …
debugging scheme racketI have a statement like this: ((lambda (a b c) (+ a b c)) 1 2 3) ; Gives 6 And I would like to be …
list parameters scheme racketproblem I'm using LilyPond to typeset sheet music for a church choir to perform. Depending on who is available on …
scheme m4 lilypond typesetting music-notation