Arrays of length 1 don't seem to work properly. e.g.:
int test[1];
void autoexec() {
test[0] = 42;
}
This gives me an 'Unknown variable assignment operator: '['' error on the line 'test[0] = 42', as though VERGE doesn't consider 'test' an array (just because it's short - how cruel!).
Any plans to fix this?