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    
lazarus / usr / share / lazarus / 1.6 / components / codetools / examples / scanexamples / procsandmethods1.pas
Size: Mime:
unit ProcsAndMethods1;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils; 

type
  TFoo = class
  end;

  TBar = class
  public
  end;

procedure DoSomething(i: integer);

implementation

procedure DoSomething(i: integer);
begin
  // code
end;

end.