fsharp-mandelbrot/Program.fs
2019-02-07 21:13:38 +01:00

13 lines
262 B
FSharp

// 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