diff --git a/Program.fs b/Program.fs index 5c0cf18..83254da 100644 --- a/Program.fs +++ b/Program.fs @@ -1,16 +1,16 @@ -// Learn more about F# at http://fsharp.org - -open System - -[] -let main argv = - printfn "Mandelbrot!" - - let resultMandelbrot = MandelBrot.generate 800 600 150.0 32 570 - resultMandelbrot.Save("mandelbrot.bmp") - - printfn "Julia!" - let resultJulia = Julia.generate 800 600 150.0 32 570 - resultJulia.Save("julia.bmp") - - 0 // return an integer exit code +// Learn more about F# at http://fsharp.org + +open System + +[] +let main argv = + printfn "Mandelbrot!" + + let resultMandelbrot = MandelBrot.generate 800 600 150.0 32 570 + resultMandelbrot.Save("mandelbrot.bmp") + + printfn "Julia!" + let resultJulia = Julia.generate 800 600 250.0 2 250 + resultJulia.Save("julia.bmp") + + 0 // return an integer exit code diff --git a/julia.bmp b/julia.bmp index 2069433..2b6f8ee 100644 Binary files a/julia.bmp and b/julia.bmp differ