python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Lisp constants used in multiple places
There are some constants in my application that I want to use throughout the program. This is what I currently do:
(defconst my-constant-alist
'((my-foo . "foo")
(my-bar . "bar&qu...
user3482407
Votes: 0
Answers: 1
AutoLisp - Two basic functions: Determining the number and value of block attributes
I have to write the function that determines the number and values of block attributes in AutoLisp.
I have function which count the atributes:
(defun c:Test (/ s ss)
(if (and (princ "\n Selec...
xyzxyzxyz
Votes: 0
Answers: 1
LISP function fails and returns NIL when making a list of Nth items of other lists
I need to make a named function, which makes a new list from the 3rd item from three master lists. I made this code
(defun func (nth n))
(lambda (l1 l2 l3) '(H G (U J) (T R)) '(2 1 (+ 4 5)) '(...
Dariushka
Votes: 0
Answers: 1
What is Classifier and Transformer in MIT Scheme?
In the following scheme code, accumulate does right-fold. When I tried to run using mit scheme. I ran into following error:
Transformer may not be used as an expression: #[classifier-item 13]
Classifi...
Xiaoyong Guo
Votes: 0
Answers: 2