I\'m porting some code from lisp, but I got stuck at this part (apparently that\'s for mit-scheme) (define (end-of-sentence? word)
I have a problem with some part of my lisp code. It is a sudoku table generator. It works fine until this part:
I have the following binary tree A / \\ BC / \\ DE represented as a list in Lisp (A 2 B 0 C 2 D 0 E 0) where the letters are node names and the numbers are the number of child nodes (0 for none,
I have created some of my own user packages and have run into a name clash. In Java, the naming convention is to use your domain name in the package name:
In Chapter 9 of the Little Schemer, the Author presents the following two functions (define Q (lambda (str n)
We have built a webservice for a client that uses AutoCAD. They have a macro that runs in AutoCAD that builds a SOAP request. But they have not figured out how to actually send()开发者_运维问答 the so
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I have not found a solution to use the Clojure REPL with Qt on the web. B开发者_运维百科asically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to disp
Can classes have multiple constructors and/or copy constructors in common-lisp? That is - in order to create a class for a new vector - \"vecr\" to represent 3-d vectors of real numbers, I\'d like to
I\'m trying to pass a function as an argument and call that function within another function. A piece of my code looks like this: