I still don't understand how to make this entry correct. I have a static array that I want to use exactly as an array (the structure doesn't quite fit):

```d
string[][string] arr = [
    "one": ["abc", "def"],
    "two": ["ghi", "jkl"],
    "three": ["mno", "pqr"]
]
```

There are the same number of elements everywhere (in the internal array).

Reply via email to