Reputation: 3276
I can't seem to find answer anywhere on how to create a string array with finite numbers of characters.
For instance, in Delphi you can declare a string array variable with x number of characters like so.
var TmpStr:string[10];
How do you do the same in Delphi Prism? or Can you even do that?
Thanks
Upvotes: 0
Views: 274
Reputation: 6085
All the Array types in (Delphi) Prism / the Oxygene language are explained here: http://prismwiki.embarcadero.com/en/Array_Types
Upvotes: 1