Advertisement
FlyFar

bcc.dpr

Jun 7th, 2023
1,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.19 KB | Cybersecurity | 0 0
  1.    program bcc;
  2.  
  3.    uses
  4.      Forms,
  5.      Splash_unit in 'Splash_unit.pas';
  6.  
  7.    {$R *.res}
  8.  
  9.    begin
  10.  
  11.      Application.CreateForm(TSplash, Splash);
  12.      Application.Run;
  13.  
  14.    end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement