First of all, I know my question is too bizarre due to English is not my mother tongue.
I have used Google to learn this but I did not understand anything actually.
I want to create a function like this:
The function should take two parameters in square brackets and should get a parameter with assignment (=) operator.
I want to a function like this:
myFunction[Parameter1][Parameter2] = Parameter3;
Parameter1 and Parameter2 are integers. Parameter3 is a string.
And here is an example that describes what I want:
myFunction[3][5] = "stackoverflow";
How do I create that kind function?