Delphi View DPR file

By selecting [Project | View Source], you can see the basic appearance of the DPR file, the operation is as follows:
The content of the default Delphi project file is as follows:
program Project1; {Keyword program}
uses {uses unit reference}
Vcl.Forms, //New unit name VCL qualification
Unit1 in ‘Unit1.pas’ {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
{The MainForm is displayed in the taskbar by default, instead of the previous version of Application}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.