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