On 2012/01/29 13:52, shishir wrote:
> I had the same question as the OP, but I am at a loss looking at the list maintained at
haskell.org. I'm primarily a C/C++ programmer. I did have a look at Real World Haskell but it did not appeal to me its too verbose, is there any book which would be closer to say a KnR or TC++PL for Haskell. So far whatever I've read about Haskell has really amazed me, so I desperately want to learn the language.
Did you check out this tutorial, which is good for experienced programmers
http://www.haskell.org/tutorial/
In addition, you might take down Hugs
http://www.haskell.org/hugs/,
which is an interpreter, and look at its sources, which good input on
how to program. For example:
hugs98-plus-Sep2006/libraries/hugsbase/Hugs/Prelude.hs
Some basic packages are in
hugs98-plus-Sep2006/packages/base/Data/
But program with the platform which has the interactive ghci:
http://hackage.haskell.org/platform/
And the language specifications, 98 and now 2010:
http://www.haskell.org/haskellwiki/Language_and_library_specification
Hans