source: branches/Pascal Compiler 2/PascalCompiler.dpr

Last change on this file was 16, checked in by george, 15 years ago
  • Přidáno: Další pokusný projekt překladače.
File size: 282 bytes
Line 
1program PascalCompiler;
2
3uses
4 Forms,
5 UMainForm in 'UMainForm.pas' {Form1},
6 UCompiler in 'UCompiler.pas',
7 USyntaxHighlight in 'USyntaxHighlight.pas';
8
9{$R *.res}
10
11begin
12 Application.Initialize;
13 Application.CreateForm(TForm1, Form1);
14 Application.Run;
15end.
Note: See TracBrowser for help on using the repository browser.