FastReport_FMX_2.8.12/Source/CDS/FmxLinuxFrxCDS.dpr
2024-07-06 22:41:12 +02:00

20 lines
288 B
ObjectPascal

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