FastReport_FMX_2.8.12/LibD28/FmxLinuxFrxLang.dpr
2024-07-06 22:41:12 +02:00

21 lines
299 B
ObjectPascal

program FmxLinuxFrxCDS;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
FMX.frxrcClass,
FMX.frxrcDesgn,
FMX.frxrcInsp,
FMX.frxrcExports;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.