I just started using verge, read the tutorials and when I tried to test some stuff, I found the following problem:
int numbers[15]; //makes a list of 15 integers
string names[7]; //this one is a list of 7 strings
numbers[0] = 42; //this sets the first member of 'numbers' to 42.
numbers[14] = 3; //this sets the last member of 'numbers' to 3.
(this is straight copypaste from the manual)
when I try to run this code, I get this error:
system.vc(3): Expecting ",", but got "[" instead
(line 3 is the first line of the code I posted)
what is wrong with the code?