Subversion Repositories recyclebinunit

Rev

Rev 12 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
12 daniel-mar 1
program BitBucketReader;
2
 
3
uses
4
  Forms,
17 daniel-mar 5
  Main in 'Main.pas' {MainForm},
12 daniel-mar 6
  Functions in 'Functions.pas';
7
 
8
{$R *.res}
9
 
10
begin
11
  Application.Initialize;
17 daniel-mar 12
  Application.CreateForm(TMainForm, MainForm);
12 daniel-mar 13
  Application.Run;
14
end.