I haven\'t heard of any, most languages seem to just have division of ints round or be a floating point numb开发者_运维知识库er. Was it found to be a problem in scheme and so not used in other languag
I\'m making a function that multiplies all numbers between an 1 input and a \"x\" input with dotimes loop. If you please, check my function and say what\'s wrong since I don\'t know loops very well in
Does racket have something like guile\'s procedure-source function, e.g.: (define (plus-one x) (+ 1 x))
What\'s the Gambit-C\'s GC mechanism? I\'m curious about this for making interactive app. I want to know whether it can avoid burst GC operation or开发者_运维技巧 not.According to these threads:
In this example, > (= 1 1) #t > (= \'a \'a) *** ERROR IN (console)@2.1 -- (Argument 1) NUMBER expected
thanks to people at this great site I managed to put together code that is nearly complete and working. I have one final question.
HI, I\'ve been trying to work my way thru the SICP book, I found myself cribbing some of the online answers but getting the overall ideas of recursive vs. iterative procedures, etc. But I\'m getting t
The question requires me to Complete the Scheme function merge, which consume开发者_JAVA百科s two lists of sorted numbers (in an increasing order) and produces a list of numbers which consists of all
i\'m implementing an IDE for scheme in eclipse using DLTK. So far, i am programming the grammar to recognize the lexical structure.
Can you see what is wrong with this: (define (box d x1 y1 x2 y2)( (graphics-draw-line d x1 y1 x1 y2) (graphics-draw-line d x1 y2 x2 y2)