Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / uw27522c.pp
Size: Mime:
{$MODE OBJFPC} { -*- delphi -*- }
{$CODEPAGE UTF8}
{$MODESWITCH ADVANCEDRECORDS+}
unit uw27522c;

interface

type
   TTest3 = record
     Value: Integer;
     function TestMethod(): UTF8String;
   end;

implementation

uses uw27522b, sysutils, uw27522a;

function TTest3.TestMethod(): UTF8String;
begin
    Result := '' + IntToStr(Value);
end;

end.