5 lines
82 B
D
5 lines
82 B
D
|
|
void main() {
|
||
|
|
auto hash = ["foo":42, "bar":100];
|
||
|
|
assert("foo" in hash);
|
||
|
|
}
|