Introduction
Julia uses the following syntax for dictionaries:
Dict({k₁ => v₁, k₂ => v₂, …, kₙ₋₁ => vₙ₋₁, kₙ => vₙ)
While Python and JSON looks like this:
{k₁: v₁, k₂: v₂, …, kₙ₋₁: vₙ₋₁, kₙ: vₙ}
For illustrative purposes we could also use this syntax in Julia and add new seman...