On 05/08/2015 12:06 AM, Nick Sabalausky wrote:
On 05/07/2015 11:24 PM, avarisclari wrote:scene = scenes["title"]It looks like scenes is a dictionary that stores dictionaries of strings? If so, then in D, scenes would be declared like this: string[string][string] scenes; Then the above line would be: auto scene = scenes["title"]
BTW, D calls them "Associative Arrays" or "AA", instead of "dictionary". I *think* "dictionary" is what Python calls them, but I could be wrong.