mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-16 11:28:05 +02:00
8 lines
80 B
ObjectPascal
8 lines
80 B
ObjectPascal
var
|
|
p : array[0..6] of char;
|
|
begin
|
|
p:='test';
|
|
writeln(copy(p,1,3));
|
|
end.
|
|
|