mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 03:04:13 +02: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.
|
|
|