fsharp-mandelbrot/Program.fs
joachimschmidt557 428500be37 Finally correct
2019-02-08 12:45:54 +01:00

13 lines
263 B
FSharp

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