Componentes.Terceros.RemObj.../official/5.0.35.741/Pascal Script for Delphi/Samples/Debug/ide.dpr
2009-02-27 15:16:56 +00:00

16 lines
309 B
ObjectPascal

program ide;
uses
Forms,
ide_editor in 'ide_editor.pas' {editor},
ide_debugoutput in 'ide_debugoutput.pas' {debugoutput};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(Teditor, editor);
Application.CreateForm(Tdebugoutput, debugoutput);
Application.Run;
end.