Repository URL to install this package:
Version:
1.6 ▾
|
lazarus
/
usr
/
share
/
lazarus
/
1.6
/
components
/
codetools
/
examples
/
scanexamples
/
methodjump1.pas
|
---|
unit methodjump1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
procedure DoSomething;
implementation
procedure DoSomething;
begin
end;
end.