program PascalCompiler; uses Forms, UMainForm in 'UMainForm.pas' {MainForm}, UCompiler in 'UCompiler.pas', UVirtualMachine in 'UVirtualMachine.pas', UWideInteger in 'UWideInteger.pas'; {$R *.res} begin Application.Initialize; Application.CreateForm(TMainForm, MainForm); Application.Run; end.