home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / FishFact / fishfact.dpr < prev    next >
Encoding:
Text File  |  2005-04-01  |  194 b   |  14 lines

  1. program Fishfact;
  2.  
  3. uses
  4.   Forms,
  5.   Ffactwin in 'FFACTWIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.