It compiles with dmd 2.109.1 if other problems are solved.

```d
void main() {
    string[string] dictionary = [
        "blue": "mavi",
        "red": "kırmızı",
        "gray": "gri"
    ];

    printAA("Color Dictionary", dictionary, commaSeparator: "\n");
}

void printAA(string title, string[string] aa,
    string keySeparator= ": ",
    string commaSeparator = ", ") {
}
```
  • Does D 2.110 sup... Brother Bill via Digitalmars-d-learn
    • Re: Does D ... Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
      • Re: Doe... Brother Bill via Digitalmars-d-learn
      • Re: Doe... Dom Disc via Digitalmars-d-learn
        • Re:... Brother Bill via Digitalmars-d-learn
          • ... Dom Disc via Digitalmars-d-learn

Reply via email to