#HiSoft Pascal
Yes, strings can be any length up to 255 (due to the length byte
restriction), and I don't know what the array ceiling is offhand, so what
you want can be accomplished. For example:
const
str : array [0..3] of string = ('test0','test01','test002','test0003');
-Dave-