Search found 2 matches

by Dat Woo
Sun Nov 25, 2018 9:07 pm
Forum: Common Lisp
Topic: About single quote, and double parentheses
Replies: 2
Views: 21066

Re: About single quote, and double parentheses

Thank you pjstirling,

You response had helped me a lot, especially expand the format of let into (list 'let...)
by Dat Woo
Sat Nov 17, 2018 7:13 pm
Forum: Common Lisp
Topic: About single quote, and double parentheses
Replies: 2
Views: 21066

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...