mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 19:00:58 +02:00
19 lines
239 B
ObjectPascal
19 lines
239 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch advancedrecords}
|
|
|
|
operator = (z1: LongInt; z2 : ansistring) b : boolean;
|
|
begin
|
|
b := false;
|
|
end;
|
|
|
|
var
|
|
i: longint;
|
|
s: string;
|
|
begin
|
|
if i = s then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|