import std.stdio; void main() { string[int] aa; assert(aa == null); assert(aa.length == 0); aa = [0:"zero", 1:"not zero"]; assert(aa.length == 2); }