Hi, I have several local variable arrays that I need to initialize. Is there an easy way to do this without having to explicitly index each element?
For example; in Java I would just do the following:
int myValues[] = new int[] {1,1,1,2,2,2};
Thanks in advance.
