On Tue, 11 Mar 2003, Peter N Lewis wrote:
What does the following program do?
adding 3 more lines of code should answer your question:
program test;
type Str255 = array[0..255] of char;
var a,b: Str255; begin
a := 'hello '; b := 'world';
a := a + b;
writeln( a );
end.
Russ