(define-syntax prnt (syntax-rules () [(prnt elem ...) (display (format \"~a\" elem .开发者_JAVA百科..))]
(define (mult a b);;function mult(a,b) (cond ((IsItZero? b) 0);;if b = 0: return 0 ((let((c (mult a (rest b))));;c = mult(a, floor(b/2))
I\'m having a hard time with exerc开发者_StackOverflowise 1.2 in SICP. Translate the following to prefix form:
Is there a way (or can anyone find a way) to import IronScheme into VS2010? I\'ve already taken a look at this question, and I\'ve done everything I could - I even edited the binary files involved to
I\'m guessing that #lang racket is a dialect of scheme with much more out of the box structures and common functions and perhaps would be more pedagogic. What are the perks a #lang racket against #lan
I am just hacking around with Scheme (mit-scheme) and I have just figured out how you change the environment, so that \'+\' becomes a symbol for the equivalent procedure of the \'-\' operator.
i am trying to write a scheme program which will take a list of marks as input and gives the output as a list of the grades.
I want to test for equality amongst lists, but 开发者_开发知识库I really only care that the members are the same, not the ordering. Are there any simple operators to check for this?
I have difficulties understanding the new macro system of Scheme. Somewhere along the path I began to write my \"macro\" as a function first, and then later apply it as a macro.
Is there a Scheme compiler (not interpreter) for ARM processors, specifically Cortex-M3? I\'m looking for a compiler, not an interpreter, to get a predictable and small execution times on a (relativel