From ab90115764416c747c15ec49912b58461ca91814 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Wed, 30 May 2012 16:43:05 +0200 Subject: [PATCH] removed some bad phrasing --- 00_Introduction.lhs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/00_Introduction.lhs b/00_Introduction.lhs index 7bc6982..4ca3b94 100644 --- a/00_Introduction.lhs +++ b/00_Introduction.lhs @@ -6,14 +6,17 @@ Steps: 1. Mandelbrot set with Haskell OpenGL 2. Mandelbrot edges -3. 3D Mandelbrot (because 2D is for pussies) +3. 3D Mandelbrot because its fun 4. Clean the code from full impure and imperative to purer and purer. +5. Refactor the code to separate nicely important parts +6. Improve efficiency From 1 to 3 it will be _dirtier_ and _dirtier_. At 4, we will make some order in this mess! Hopefuly for the best! -One of the goal of this article will be to show some good properties of Haskell and in particular how to make some real world application with it. +One of the goal of this article is to show some good properties of Haskell. +In particular, how to make some real world application with a pure functional language. I know drawing a simple mandelbrot set isn't a "real world" application. But the idea is not to show you a real world application which would be hard to follows, but to give you a way to pass from the pure mindset to some real world application.