Well i got this example from the pdf book and it says syntax error at line number one and i got no idea what to do:
Code:
Procedure EchoArray(MyArray.s(1)) ; These are dimensions i figured...
For x.l = 0 To 3
Debug MyArray(x)
Next x
EndProcedure
Dim Countries.s(3)
Countries(0) = "England"
Countries(1) = "Northern Ireland"
Countries(2) = "Scotland"
Countries(3) = "Wales"
EchoArray(Countries())
EDIT: Figured it out in help file found that you need Array keyword, the book seems a bit outdated, which i did suspect.
Thanks for anyone who was interested to help.