mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:47:55 +02: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.
|