I am trying to model this kind of data in Clojure
name: foo data: bar
name: stack data: overflow
name: tess data: ting
I thought about using a map, but you can't have duplicated keys in there so that wouldn't work.
Is it possible to have an array of maps, similar to:
[{name: foo, data: bar}
{name: stack, data: overflow}
{name: tess, data: ting}]
if it is, how would you access the data. for example, how would you access data: overflow
would you have to use a nested get statement?