You've already forked lazarus-ccr
15 lines
206 B
ObjectPascal
15 lines
206 B
ObjectPascal
![]() |
program LineExample;
|
||
|
|
||
|
uses
|
||
|
Interfaces,
|
||
|
Forms,
|
||
|
ULineExample in 'ULineExample.pas' {Form1};
|
||
|
|
||
|
{$R *.RES}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|