Trying mandelbrot in F#
This commit is contained in:
commit
3eddbc0afe
22 changed files with 1548 additions and 0 deletions
13
Program.fs
Normal file
13
Program.fs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue