lazarus/debugger/test/debugtest.pp
marc baa8cff9f6 MWE: = Moved and renamed debuggerforms so that they can be
modified by the ide
     + Added some parsing to evaluate complex expressions
       not understood by the debugger

git-svn-id: trunk@3068 -
2002-08-18 08:57:27 +00:00

16 lines
245 B
ObjectPascal

program debugtest;
{$mode objfpc}
{$H+}
uses
Classes, Forms, DebugTestForm, BreakpointsDlg, LocalsDlg,
Interfaces, Unit1;
begin
Application.Initialize;
Application.CreateForm(TDebugTestForm, DebugTestFrm);
Application.Run;
end.