mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
10 lines
132 B
ObjectPascal
10 lines
132 B
ObjectPascal
var
|
|
a, b : UnicodeString;
|
|
begin
|
|
a := '12345';
|
|
b := Copy(a,1,Length(a));
|
|
if (a <> b) then
|
|
Halt(1);
|
|
WriteLn('ok');
|
|
end.
|