In the manual it says to initialize an array:
var name[n] = { value_1, value_2, ... value_n };

but what about a multidimensional array?
As an example, I've tried both:

var array[2][2] = {1, 2 ,3, 4};

and

var array[2][2] = {{1, 2},{3,4}};

which is how it's done in C, but neither compiles (syntax error) in Lite_C.
Any ideas?