Componentes.Terceros.jvcl/official/3.36/examples/JvInterpreterDemos/JvInterpreterCallFunction/JvInterpreterCallFunction.dpr

14 lines
249 B
ObjectPascal
Raw Normal View History

program JvInterpreterCallFunction;
uses
Forms,
JvInterpreterCallFunctionFm in 'JvInterpreterCallFunctionFm.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.