fpc/bugs/bug0200.pp
1999-01-20 13:34:37 +00:00

8 lines
80 B
ObjectPascal

var
p : array[0..6] of char;
begin
p:='test';
writeln(copy(p,1,3));
end.