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
struct"coordinate";
int x;
int y;
struct;
new"coordinate""c1";
c1.x = 1313;
Subscript example
int array 10 = 0;
int currentIndex = 0;
int currentValue = 5;
# Value of array at index 0 will equal 5 after assignment.
array[0] = array[currentIndex] + currentValue;