mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:27:59 +02:00
17 lines
224 B
ObjectPascal
17 lines
224 B
ObjectPascal
var
|
|
Start : Cardinal;
|
|
Run,Text: PWideChar;
|
|
RunLen: Cardinal;
|
|
|
|
begin
|
|
Start:=100;
|
|
Run:=nil;
|
|
Text:=Run+10;
|
|
Start:=Start+Run-Text;
|
|
if Start<>90 then
|
|
begin
|
|
writeln('error');
|
|
halt(1);
|
|
end;
|
|
end.
|