I have a question about arrays, I have read that we can do an array of pointers, but I am confused. When I try this:
var e[] := [7,8,9,Enabled[0],2,2,2];
I get this error:
Error: expected ']' to close initialiation sequence, got '[' (line 707 column 22 file:DaytimeB.4Dg)
Error: semicolon expected after array declarations, got while (line 709 column 5 file:DaytimeB.4Dg)
What should be the proper form?
Thanks,
Mark
var e[] := [7,8,9,Enabled[0],2,2,2];
I get this error:
Error: expected ']' to close initialiation sequence, got '[' (line 707 column 22 file:DaytimeB.4Dg)
Error: semicolon expected after array declarations, got while (line 709 column 5 file:DaytimeB.4Dg)
What should be the proper form?
Thanks,
Mark
Comment