fsharp-mandelbrot/Program.fs
joachimschmidt557 4b94f8c089 WIP
2019-02-10 11:19:45 +01:00

16 lines
399 B
FSharp

// Learn more about F# at http://fsharp.org
open System
[<EntryPoint>]
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