Componentes.Terceros.jvcl/internal/3.36/1/examples/JvInterpreterDemos/JvInterpreterSimple/JvInterpreterSimpleExpression.dpr
2009-03-04 12:31:55 +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.