dlang-book/book/04-массивы-ассоциативные-массивы-и-строки/src/chapter-4-4-1/app.d

10 lines
No EOL
169 B
D

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);
}