OSDN Git Service

初めてのコミット
[fmx-launcher/fmx-launcher.git] / fmx_launcher.dpr
1 program fmx_launcher;
2
3 uses
4   FMX.Forms,
5   Unit1 in 'Unit1.pas' {Form1};
6
7 {$R *.res}
8
9 begin
10   Application.Initialize;
11   Application.CreateForm(TForm1, Form1);
12   Application.Run;
13 end.