Lisp, instructions not working in defun [duplicate]
What you are missing is that in Lisp parentheses are meaningful. In C/Java/Python &c, the following expressions are the same: a+b (a+b) (a)+(b) (((a)+(b))) (((((a)+(b))))) In Lisp, the following expressions are very different: a — a symbol (a) — a list with a single element, which is the symbol a (1 (2)) — a list … Read more