-
-
Notifications
You must be signed in to change notification settings - Fork 26
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
I tried to make 2 dimensional array.
here is my code.
set {_array} to new Object[1]
set {_array}[0] to new Object[1]
set {_array}[0][0] to "Hello World"
It may looks work, but I can't use {_array} as an argument to a function that expects a 2-dimensional array (strangely, it's recognized as a 1-dimensional array)
Describe the solution you'd like
A clear and concise description of what you want to happen.
Currently, I can use new Object[1] to make one-dimensional array. But new Object[1][1] doesn't work. (It seems to work as (new Object[1])[1], which returns null) I want this code to work like it does for one-dimensional arrays
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
If {_array} in the code I first showed could work as an argument to a function that expects a two-dimensional array, that would also seem like a good alternative.
Additional context
Add any other context or screenshots about the feature request here.