The following code works.
But if you remove ";" in the first line, it does not work.
May be it should be good to warn the fact that a table was already declared as not global before...
It is not so important...
Code: Select all
; Dim table$(0)
Global Dim table$(0)
Procedure test ()
Dim table$(10)
table$(3) = "3ème"
table$(5) = "5ème"
EndProcedure
test()
Debug table$(3)
Debug table$(5)
End