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

21 lines
307 B
ObjectPascal

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