bug0200.pp 80 B

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