Last change
on this file was 15, checked in by george, 16 years ago |
- Přidáno: Další pokusný projekt překladače.
|
File size:
328 bytes
|
Line | |
---|
1 | program PascalCompiler;
|
---|
2 |
|
---|
3 | uses
|
---|
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 |
|
---|
12 | begin
|
---|
13 | Application.Initialize;
|
---|
14 | Application.CreateForm(TMainForm, MainForm);
|
---|
15 | Application.Run;
|
---|
16 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.