mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
17 lines
163 B
ObjectPascal
17 lines
163 B
ObjectPascal
{ %fail }
|
|
|
|
unit tw19213;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
class operator + (a, b: String): Integer;
|
|
begin
|
|
Result := Length(a) + Length(b);
|
|
end;
|
|
|
|
end.
|