Repository URL to install this package:
|
Version:
1.6 ▾
|
lazarus
/
usr
/
share
/
lazarus
/
1.6
/
components
/
codetools
/
examples
/
scanexamples
/
procsandmethods1.pas
|
|---|
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.