FastReport_FMX_2.8.12/Source/FmxLinuxFrxLang.dpr

21 lines
299 B
ObjectPascal
Raw Permalink Normal View History

2024-01-10 21:50:38 +01:00
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.