Multidimensional Array help?

BlitzMax Forums/BlitzMax Beginners Area/Multidimensional Array help?

I've read elsewhere that this isn't possible. Why not?

I want to make a multidimensional array that uses integers and strings. It would look something like this:

DFrameArray[][] = [[10]["Blah","Bleh","Blah2"]]

Is this possible?

I think not..

Why not make a type which includes an int field and a string field, and make a multidimensional array of that type?

Download this beginners guide:
http://www.truplo.com/docs/BeginnersGuideToBlitzMax10.pdf

There's a chapter about Array-handling included.

could you not have an array of pointers to arrays of various types?