source:
branches/Pascal Compiler 2/PascalCompiler.dpr
| Last change on this file was 16, checked in by , 17 years ago | |
|---|---|
| File size: 282 bytes | |
| Line | |
|---|---|
| 1 | program PascalCompiler; |
| 2 | |
| 3 | uses |
| 4 | Forms, |
| 5 | UMainForm in 'UMainForm.pas' {Form1}, |
| 6 | UCompiler in 'UCompiler.pas', |
| 7 | USyntaxHighlight in 'USyntaxHighlight.pas'; |
| 8 | |
| 9 | {$R *.res} |
| 10 | |
| 11 | begin |
| 12 | Application.Initialize; |
| 13 | Application.CreateForm(TForm1, Form1); |
| 14 | Application.Run; |
| 15 | end. |
Note:
See TracBrowser
for help on using the repository browser.
