import std.stdio; void main () { int[int] a = [ 1:0, 3:2, 5:4, ]; foreach (k, v; a) { writefln("%d => %d", k, v); } }