da Silva, Joe wrote:
OK, just speculating here ... <G>
I'd think that "known problem with some string operations (especially concatenation) in a loop" means "writeln(os1+' '+os2+os3+os4+os5+os6)" is the problem, since this is string concatenation and is within a "while" loop ...
Yes, that's what I meant. Of course, in this particular example, you could just replace `+' by `,' since WriteLn accepts any number of arguments. In other cases this might not be possible, then you might have to move the statements containing the concatenation.
Frank