mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-20 16:50:32 +01:00
15 lines
234 B
ObjectPascal
15 lines
234 B
ObjectPascal
program fcldemo;
|
|
|
|
uses
|
|
udapp, regreports, fpreportbarcode;
|
|
|
|
Var
|
|
Application : TReportDemoApplication;
|
|
|
|
begin
|
|
Application:=TReportDemoApplication.Create(Nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
Application.Free;
|
|
end.
|