source: branches/Pascal Compiler/PascalCompiler.dpr

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