So create an array of strings - x[2][10] for example
Set the initial value to {"abc", "def"} - in v8 this was reported as a syntax error - but in v10 (and v9) - it creates the rather odd expansion of
This (of course) fails at compilation.MX_CHAR FCL_X[2][3] = " \"abc\", \"def\" ";
Martin