Componentes.Terceros.jvcl/official/3.36/examples/JvInterpreterDemos/JvInterpreterSimple/JvInterpreterSimpleExpression.dpr
2009-02-27 12:23:32 +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.