mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-30 16:41:43 +01:00
29 lines
259 B
ObjectPascal
29 lines
259 B
ObjectPascal
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.
|
|
|