Open
Description
As reported by Iggy:
- I’ve found out that changing one element sometimes affects another element.
So for example,
I have initialized myArray variable like this:
myArray[0] := 1;
myArray[1] := 2;
myArray[2] := 3;
And later on, if I change the first element
myArray[0] := 5;
then, sometimes myArray[1] got 3 or 4 something like this.
- Also I couldn’t find the right way to initialize 1D array with values at once, for example, something like this.
myArray := [1,2,4,5,8];
Activity