D7zzHanglin/Z99Dependency/ThreeFun/Form/GetAddRess.dpr
DESKTOP-E401PHE\Administrator 0f9beb9b62 Apply new .gitignore
2025-09-22 15:07:39 +08:00

14 lines
191 B
ObjectPascal

program GetAddRess;
uses
Forms,
U_GetAddRess in 'U_GetAddRess.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.