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