Thank you pjstirling,
You response had helped me a lot, especially expand the format of let into (list 'let...)
Search found 2 matches
- Sun Nov 25, 2018 9:07 pm
- Forum: Common Lisp
- Topic: About single quote, and double parentheses
- Replies: 2
- Views: 30194
- Sat Nov 17, 2018 7:13 pm
- Forum: Common Lisp
- Topic: About single quote, and double parentheses
- Replies: 2
- Views: 30194
About single quote, and double parentheses
I'm reading "Common Lisp Recipes", within the book, there is an example as below: Please explain to me: - why do we need a single quote before (let ...), as in : ' (let ((temp, var-1)) ) - and, why do we need double Parentheses after let, as in: let (( temp,var-1 )) - and, why there is a s...