I am getting syntax errors if i try to define an array of strings like this:

Code:

STRING* text[1] = "text";
STRING* text[2] = "text2";
...

or :

STRING* text[2] = {"text","text2"...}



The array explanation in the manual does only show some examples with the type "var", but the same methods dont seem to work with strings.

could someone please write an simple array to show me its structure?

thanks, tarandur.