When running a Groovy application, what symbol is used to separate from Spring command arguments? code example
Example: unresolved compilation error int test[5] = {1, 2, 3, 4, 5}
int test[5] = {1, 2, 3, 4, 5}
for (int i = 0; i < 5; i++) {
System.out.println(test[i]+" ");
}