Dear andreas:
I decare a string array
ex:
string[] arr = { "11111" , "222222"};
But If I remove the comma
string[] arr = { "11111" "222222"};
angelscript won't report parsing error.
Instead, this statement is equal to string[] arr={"11111222222"};
Is it a bug?