I have a list of symbols in a list named 'mems'
How do i extract the "values" of those symbols instead of the symbols themselves?
: mems
(s1 s2 s3 s4 s5)
: s1
("hi")
: (map symbol? mems)
(true true true true true)
never mind:
I figured it is
(map eval mems)
That's great. I sometimes have to ask someone about a problem I'm stuck on, and then in the asking, I figure out myself what the problem is. I think that often the only thing we need is a sounding board. Excellent.
BTW, this too might work: (eval (cons 'list mems))
and this too: (eval (cons list mems)) w/o the quote ;)
Thank you for the quick responses. Love you people.