mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 11:59:32 +02:00
18 lines
185 B
ObjectPascal
18 lines
185 B
ObjectPascal
{ %fail }
|
|
program tassignmentoperator1;
|
|
|
|
{$mode objfpc}
|
|
|
|
operator := (S1, S2: String): Integer;
|
|
begin
|
|
Result := Length(S1);
|
|
end;
|
|
|
|
var
|
|
S: String;
|
|
V: Integer;
|
|
begin
|
|
V := S;
|
|
end.
|
|
|