I save the variable value (setf num (+ 4 5)) like this and
I save the (setf str '("Hello")).
And then I want make a list like this (setq v '(num str)).
However because of the single quote, it doesn't recognize it as a string and not working as expected.
how can i make a list with variable value?
listorcons(list var1 var2)is the same as(cons var1 (cons var2 '())). What doesn't work?(list 'sim '= 7). IN place of 7 you can just put a variable or an expression.