mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 12:29:25 +01: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.
|
|
|