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.0.0 / tests / tbs / ub0421c.pp
Size: Mime:
unit ub0421c;
interface

{$mode objfpc}

type
  cl1=class
    f1:longint;
    constructor create;
  end;

implementation

    constructor cl1.create;
    begin
      f1 := 10;
    end;

end.