I thought it would be handy to create Symbols, and that worked, but why do I get a key error when I try to use them in a Dict?
fim = [Symbol(n) for n in "abcdef"]
6-element Vector{Symbol}:
:a
:b
:c
:d
:e
:f
d = Dict()
for sym in fim
d[sym]=>14
end
KeyError: key :a not found