OK, this has been driving me crazy. All I want to do is create an array of strings but I can't work out what the syntax should be.
I just want to set up an array and be able to assign strings to each element. e.g.
Please note that what I'm trying to do can not be done with autoarrays since I will not know the array contents when it is created. I'm sure this should be simple, but I just can't work it out.
I just want to set up an array and be able to assign strings to each element. e.g.
myarray[1] = "A string" myarray[2] = "Another string" myarray[3] = "yeah, you get the idea"
Please note that what I'm trying to do can not be done with autoarrays since I will not know the array contents when it is created. I'm sure this should be simple, but I just can't work it out.