home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue160 / files / SyntaxEditor / SyntaxEditor.dpr < prev   
Encoding:
Text File  |  1999-10-13  |  324 b   |  18 lines

  1. program SyntaxEditor;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {Form1},
  6.   syntax in 'syntax.pas',
  7.   RichEditUtils in 'RichEditUtils.pas',
  8.   editconsts in 'editconsts.pas',
  9.   Strutils in 'Strutils.pas';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.