Hi, I've been trying to use a 2D Map, such as a map[string] of map[int] of Expression. Only the string index is meaningful. The int is just an index, so I store in order from 0 to n. I'm only using it as basically an expanding array.
However, I get various problems while using this.
If I try to assign something to this 2D map, such as temp["string"][0] = x;, I get an error during compilation (I don't get a location for the error or anything else though, it just says
Compilation
Status Error
If I try to access something from the 2D map, such as if(def(temp["string"][0])), I get a similar error: during execution
Execution
Status Error
Am I doing something wrong, or are these bugs related to maps on maps? Or are there any suggested alternatives to implement something like this?