I know if I write my scheme code in the following way and type in (word‘(a b c)), it will out putthe list in the same order. Could you please tell me if there was a way I can print it out in opposite
Racket is a descendan开发者_如何学JAVAt of Scheme. How is Racket different than R6RS? What did it add, or take away, or is just different?
What is the most performant (fastest) lisp implementation on the JVM? By lisp implementation I consider all implementations of any language in lisp family, like Common Lisp, Sche开发者_Python百科me, C
I\'m really interested in becoming a serious programmer, the type that people admire for hacker chops, as opposed to a corporate drone who can\'t even complete FizzBuzz.
I\'m serializing data which may be an integer, an object (list) with other nested objects, and trying to make a choice as to what approach to be using. Of two, the first one is to create bytevectors r
I used MrEd Designer to make a user interface for a Scheme program.It includes a mred:canvas% on which I\'d like to plot points using draw-point.It\'s defined as:
i try to learn scheme and as a test project i wanted to create a very simple website with 1-2 database queries (My开发者_C百科SQL preferred, but PostgreSQL would be ok, too).
What is the rationale behind the design decision to have separate namespaces for values and functions in Common Lisp? What are the arguments 开发者_JS百科for and against it?Please see Richard P. Gabri
(define pick (lambda (num lat) (cond ((null? lat) (quote())) ((= (sub1 num) 0) (car lat)) (else (pick (sub1 num) (cdr lat))))))
rt. I want to redefine a functio开发者_Go百科n at run time so that i can change the behavior of the system at run time.