tw19213.pp 163 B

12345678910111213141516
  1. { %fail }
  2. unit tw19213;
  3. {$mode objfpc}
  4. interface
  5. implementation
  6. class operator + (a, b: String): Integer;
  7. begin
  8. Result := Length(a) + Length(b);
  9. end;
  10. end.