mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +02:00
17 lines
192 B
ObjectPascal
17 lines
192 B
ObjectPascal
{ %NORUN }
|
|
|
|
program toperator89;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
{ overloading the implicit assignment is allowed }
|
|
|
|
operator := (aArg: LongInt): Boolean;
|
|
begin
|
|
Result := aArg <> 0;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|