On 3/3/16 7:01 PM, MGW wrote:
immutable long[string] aa = [ "foo": 5, "bar": 10, "baz": 2000 ];
The only way this can be done outside the body of a function is if it is a manifest constant. This works:
enum long[string] aa = [ "foo": 5, "bar": 10, "baz": 2000 ];