Trying mandelbrot in F#

This commit is contained in:
joachimschmidt557 2019-02-07 21:13:38 +01:00
commit 3eddbc0afe
22 changed files with 1548 additions and 0 deletions

13
Program.fs Normal file
View file

@ -0,0 +1,13 @@
// Learn more about F# at http://fsharp.org
open System
[<EntryPoint>]
let main argv =
printfn "Mandelbrot!"
let result = MandelBrot.generate 800 600 200.0 2 570
result.Save("mandelbrot.bmp")
0 // return an integer exit code