I have a simple structure like this:
(def example {:bbb "bbb" :xxx [1 2 3] :yyy '(3 5 7)})
If I write this out to a file it contains
{:bbb "bbb" :xxx [1 2 3] :yyy (3 5 7)}
Which is mostly correct, but if I load-file on this, it fails because it tries to treat 3 as a function (the parens are no longer quoted, so tries to evaluate as a function).
What is the right way to do this? Thanks!