Talk:Mandelbrot set: Difference between revisions

Content added Content deleted
(→‎task description: new section)
(→‎Haskell: new section)
Line 44: Line 44:


Hi. Some programs make ASCII image on the screen, some make colur image to bmp, some to ppm file. I think that it makes comparisen very difficult ( ? imposible ). Regards --[[User:Adam majewski|Adam majewski]] 07:47, 26 November 2011 (UTC)
Hi. Some programs make ASCII image on the screen, some make colur image to bmp, some to ppm file. I think that it makes comparisen very difficult ( ? imposible ). Regards --[[User:Adam majewski|Adam majewski]] 07:47, 26 November 2011 (UTC)

== Haskell ==

Hi. Haskell version works, but what means "\" in line

mandelbrot a = iterate (\z -> z^2 + a) 0 !! 50

????? Regards. --[[User:Adam majewski|Adam majewski]] 07:53, 26 November 2011 (UTC)