MandelbrotD.dpr 246 B

12345678910111213141516
  1. (*
  2. Mandelbrot fractal
  3. *)
  4. program MandelbrotD;
  5. uses
  6. Forms,
  7. fdMandelbrot in 'fdMandelbrot.pas' {FormMandelbrot};
  8. {$R *.res}
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TFormMandelbrot, FormMandelbrot);
  12. Application.Run;
  13. end.