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

20 lines
284 B
ObjectPascal

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