I want to declare a (static) array which will get big. Example with two rows, imagine they will be 30 eventually after I fill them in:
Local $stringArray[2][2] = _
[ _
["This is the first item", "Description of it goes here"], _
["Another one ...", "Description again here"] _
]
That line breaking thing is annoying as hell. Another problem I faced is that I want to insert comments in the array, I tried this:
Local $stringArray[2][2] = _
[ _
;This is a comment for the first item
["This is the first item", "Description of it goes here"], _
;Comment for the second item
["Another one ...", "Description again here"] _
]
Finally I had to do this:
Local $stringArray[2][2] = _
[ _
["This is the first item", "Description of it goes here"], _ ;This is a comment for the first item
["Another one ...", "Description again here"] _ ;Comment for the second item
]
Is there a way to make it more readable and maybe avoid the underscores?