I'm not currently using any functional languages like Haskell and Lisp, but I'm certainly comfortable with them. I'm certainly no Haskell guru, but I'm good enough to use higher-order functions, ADTs, monads, etc. While I have a good grasp of functional programming concepts now, I had to travel a long, hard road to get to this point.
Picture if you will a programmer with a C-family background discovering Haskell for the first time. He's heard some smart people talk about how cool it is, and it says right there on haskell.org that it will substantially boost your productivity, so he momentarily puts down his Java Enterprise Web Framework With a Really Long Name and starts reading a Haskell tutorial.
At first, everything goes well. He's impressed by the fact that you don't have to constantly compile code to see the effects of your program. But after using the REPL as a calculator for a few minutes, he decides to check out how you write Hello World. This is where things start going downhill.
He notices that the chapter on I/O is tucked away in the Advanced section. Curiously, he flips to it and discovers, not an explanation of console and file I/O, but a disscussion of type classes, monads, and the like. He wonders if everything will make more sense if he just visits the appropriate chapters, but no luck; Haskell looks like one big incomprehensible mess. Our imperative programmer goes back to his Java Enterprise Framework, and that is the end of that.
It's very difficult for a programmer used to imperative programming to find a good Haskell tutorial, or a good tutorial on any other functional language for that matter. It's not that they explain Haskell badly; many of them explain it rather well. It's just that they explain the wrong parts of Haskell. Procedural programmers are more often interested in how to do I/O and create GUIs rather than in how to use Parsec or write monads.
This is one of the major barriers to adoption of the more esoteric languages; lack of learning material for "normal people". To rectify this, I thought about how I would write a Haskell tutorial.
este é só um excerto do artigo, para aceder ao artigo completo, clique no link em baixo:
this is just a small excerpt from the article, to access the full article please click in the link below:http://qftblog.wordpress.com/2007/02/14/why-its-so-hard-for-imperative...