Re: sequence length allocation
- Posted by David Cuny <dcuny at LANSET.COM> Aug 05, 1998
- 784 views
Alan wrote: > sequence s > s = "hell" > s[5] = 'o' Hm. Even I hesistate at that one.I'd issue want the program to warning, and add nothing to the sequence. After all, should: sequence s s = 'foo' s[6] = 'o' append as well, and create filler for s[4] and s[5]? Should the be blanks, or zeros? -- David Cuny
I'd issue want the program to warning, and add nothing to the sequence.
After all, should:
sequence s
s = 'foo'
s[6] = 'o'
append as well, and create filler for s[4] and s[5]? Should the be blanks,
or zeros?
-- David Cuny

