Dear friends,
I'm still learning. This is a simple thing.
How can I put inside a function the name of a variable, like the example below.
I want to do this:
(gen-binary-row 12 '(0 2 5 7 8 11))
>> (1 0 1 0 0 1 0 1 1 0 0 1)
But in this way:
(setf binrow '(0 2 5 7 8 11))
(gen-binary-row 12 '(binrow))
What am I missing ?
Thanks for help.
Best,
Julio