Dlang
Primer
Data structures
Arrays
Symbols Table
The syntax is simple and actually similar to Golang: valueType[keyType].
The literal is different though, and it’s simpler than Go counterpart:
int[string] dict = ["a": 1, "b": 2];
In fact, I feel like Dlang syntax is more concise and easier to read than Go.