mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
10 lines
81 B
ObjectPascal
10 lines
81 B
ObjectPascal
uses SysUtils;
|
|
|
|
var A : array [1..10] of Char;
|
|
|
|
begin
|
|
|
|
writeln (Trim (A));
|
|
|
|
end.
|