You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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];
The text was updated successfully, but these errors were encountered:
As reported by Iggy:
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.
myArray := [1,2,4,5,8];
The text was updated successfully, but these errors were encountered: