I have a situation where I want to create a mapping from a tuple to an integer. In python, I would simply use a tuple (a,b) as the key to a dictionary,
(a,b)
Does
the most simple and "natural" way to achieve something similar is by using multidimensional arrays, like this:
var my_map = [["blah","blah","bla"], ["foo", "bla", 8], [324, 2345, 235], [true, false, "whatever..."]];