Componentes.Terceros.jvcl/official/3.39/examples/JvInterpreterDemos/JvInterpreterSimple/JvInterpreterSimpleExpression.dpr
2010-01-18 16:55:50 +00:00

14 lines
261 B
ObjectPascal

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