mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 08:29:26 +02:00
19 lines
259 B
ObjectPascal
19 lines
259 B
ObjectPascal
program TPIProExample;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
//MemCheck,
|
|
Interfaces,
|
|
Forms, printer4lazarus, MainUnit;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|