source: branches/Analyzátor gramatiky/PascalCompiler.lpr

Last change on this file was 32, checked in by george, 15 years ago
  • Průběžné uložení.
File size: 387 bytes
Line 
1program PascalCompiler;
2
3{$MODE Delphi}
4
5uses
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
13begin
14 {$I PascalCompiler.lrs}
15 Application.Initialize;
16 Application.CreateForm(TMainForm, MainForm);
17 Application.Run;
18end.
Note: See TracBrowser for help on using the repository browser.