I'm trying to access what I believe is a "map" using what I call "multiple keys" to pull out multiple, possibly even some of the same, values.
This is the kind of thing I'm trying to do (tried many variations, doesn't work):
(:a :b :c :b :a {:a "a" :b "b" :c "c"})
This is what I want or expect in response:
"a" "b" "c" "b" "a"
Anyone know how to do this?
Thanks.