The solution is relatively simple:
x = Dict("a"=>"A", "b"=>"B", "c"=>"C")
for (key, value) in x
print(key); print(value)
end
# Output: cCbBaA
Check out the Julia docs for Base.Dict to learn more about functions you can apply to a Dictionary in Julia!