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

14 lines
186 B
ObjectPascal

program RANotepad;
uses
Forms,
fMain in 'fMain.pas' {Main};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMain, Main);
Application.Run;
end.