source:
branches/Analyzátor gramatiky/PascalCompiler.lpr
Last change on this file was 32, checked in by , 15 years ago | |
---|---|
File size: 387 bytes |
Line | |
---|---|
1 | program PascalCompiler; |
2 | |
3 | {$MODE Delphi} |
4 | |
5 | uses |
6 | Forms, LResources, Interfaces, |
7 | UMainForm in 'UMainForm.pas' {MainForm}, |
8 | UGrammer in 'UGrammer.pas', |
9 | UProgram in 'UProgram.pas', UParser; |
10 | |
11 | {$IFDEF WINDOWS}{$R PascalCompiler.rc}{$ENDIF} |
12 | |
13 | begin |
14 | {$I PascalCompiler.lrs} |
15 | Application.Initialize; |
16 | Application.CreateForm(TMainForm, MainForm); |
17 | Application.Run; |
18 | end. |
Note:
See TracBrowser
for help on using the repository browser.