Float.lpr 366 B

1234567891011121314151617181920212223242526
  1. program Float;
  2. {$mode objfpc}{$H+}
  3. {$IFDEF Windows}
  4. {$AppType Console}
  5. {$ENDIF}
  6. uses
  7. {$IFDEF UNIX}
  8. cthreads,
  9. {$ENDIF}
  10. {$IFDEF HASAMIGA}
  11. athreads,
  12. {$ENDIF}
  13. Fresnel, // this includes the Fresnel widgetset
  14. Fresnel.Forms, MainUnit;
  15. {$R *.res}
  16. begin
  17. Application.Initialize;
  18. Application.CreateForm(TMainForm, MainForm);
  19. Application.Run;
  20. end.