Skip to content

Commit 5193ee6

Browse files
committed
Inclusão do arquivo .dproj
1 parent f306496 commit 5193ee6

File tree

2 files changed

+1370
-0
lines changed

2 files changed

+1370
-0
lines changed

BarChart.dpr

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
program BarChart;
2+
3+
uses
4+
System.StartUpCopy,
5+
FMX.Forms,
6+
uMain in 'uMain.pas' {Form4},
7+
uChart in 'uChart.pas';
8+
9+
{$R *.res}
10+
11+
begin
12+
Application.Initialize;
13+
Application.CreateForm(TForm4, Form4);
14+
Application.Run;
15+
end.

0 commit comments

Comments
 (0)