Hey, I'm not sure if this is the right place for this... If not, please tell me where it should be.
Am I doing something wrong?
Does simba not support multi-dimensional arrays?
if so then why the hell not...
I've been trying to get multi-dimensional arrays to work in a script, however for some reason simba doesn't want to cooperate. Here's what I've tried:
[Error] Closing square bracket (']') expected at line 907Simba Code:var
a: array [0..3,0..3] of integer;
Compiling failed.
[Error] Closing square bracket (']') expected at line 907Simba Code:var
a: array [0..3,0..3] of TintegerArray;
Compiling failed.
[Error] 'OF' expected at line 907Simba Code:var
a: array [0..3][0..3] of integer;
Compiling failed.
[Error] 'OF' expected at line 907Simba Code:var
a: array [0..3],[0..3] of integer;
Compiling failed.
[Error] 'OF' expected at line 907Simba Code:var
a: array [0..3],[0..3] of TIntegerArray;
Compiling failed.
[Error] period ('.') expected at line 907Simba Code:var
a: array [3,3] of integer;
Compiling failed.
[Error] period ('.') expected at line 907Simba Code:var
a: array [3,3] of TIntegerArray;
Compiling failed.
[Error] Type mismatch at line 907Simba Code:var
a: array [3.3] of TIntegerArray;
Compiling failed.
[Error] Type mismatch at line 907Simba Code:var
a: array [3.3] of Integer;
Compiling failed.


Reply With Quote










