up vote 40 down vote favorite
36
share [g+] share [fb]

I am trying to learn Haskell, and I really like it, but I can't wrap my head around most of it. Would Lisp, OCaml, etc. be a gentler introduction to functional programming?

link|improve this question
2  
Can you elaborate on "I can't wrap my head around most of it"? If you're struggling with type inference and modules in Haskell then languages that take those features to the next level (like OCaml) will be even harder. Otherwise, they might well be gentler... – Jon Harrop Dec 12 '09 at 4:49
feedback

17 Answers

Haskell is indeed an ambitious place to start. Here's some commentary on functional languages:

  • For Scheme there is excellent beginner reading matter and software. But Scheme, like Lisp, is different from other functional languages: the community is splintered; a frighteningly sophisticated macro system is necessary; what type system is there doesn't help you program; and there are no algebraic data types or pattern matching. Scheme is also unfriendly to currying and partial application.

    Summary: you can learn a subset of functional ideas very well, but it's hard to get to the really interesting stuff.

  • Standard ML is frozen in amber, but there are still good implementations and good books. Bob Harper and Mads Tofte have posted free notes online. You get algebraic data types, pattern matching, and a type system that offers type inference but that you still have a chance of understanding. My favorite implementations are Moscow ML and MLton. Unfortunately, Moscow ML's library is out of date.

    Summary: good functional mindset, and you get all the important basics, but limited libraries and user community.

  • Objective Caml is an ML dialect defined by its implementation. It appeals strongly to C programmers; the compilation model is quite C-like, and the libraries have a strong imperative flavor. Example: Caml is the only functional language I know in which all strings are mutable. Caml has a vibrant user community, but the language itself is tightly controlled by a small group at the French national lab INRIA. Jason Hickey has a nice book online. Caml is not to my personal taste, but many people are wildly enthusiastic. And the compiler is very well done.

    Summary: the least surprising functional language for C programmers.

  • Haskell is the functional language for people interested in new ideas. Every year they pour new stuff into the major implementation, and there is an amazing community doing stuff from music to graphics to type systems to window managers to parallelism. Haskell has everything including the kitchen sink, and it will be hard to learn on your own. But before giving up, you might try the Helium compiler, which is designed for those learning Haskell.

    Summary: Haskell has the most and best and newest ideas, but even though people are trying to help you, Haskell will probably make your brain hurt. In a good way!

  • Erlang has been used largely in telecoms applications, where it is a major success. It lacks a static type system but does provide pattern matching (which I consider essential to the functional experience). People I trust have told me that Erlang is as much about "parallel-and-distributed" as about "functional". I wouldn't recommend Erlang for a beginner.

    Summary: Interesting, but in 2009 still a niche language.

  • F# is a new player, taking the Caml core and integrating it into the .NET type system. The minds behind it are really good, and I expect great things, but I'm not sure there's enough critical mass to support beginners yet.

    Summary: worth keeping an eye on, especially for .NET programmers.

  • Many people on this forum also like Clojure; to me it looks derivative: primarily about new implementation rather than new ideas. For that reason I haven't informed myself very well.

Overall recommendation: Have another go at Haskell via Helium, and if that doesn't help, try Standard ML.

link|improve this answer
1  
Not sure why Scheme's macros are necessary to learn functional programming. From its complexity it's much less complicated than some 'frighteningly sophisticated' features in Haskell. Also I think that a complex type system is not needed to learn the basics of functional programming. I wonder how pattern matching got associated with functional programming? I would recommend to start with the basics, work up from there and apply the knowledge piece by piece to Haskell. – Rainer Joswig Apr 23 '09 at 7:53
1  
No, just use two primitives DELAY and FORCE. Also implement a simple lazy evaluator in Scheme. no macros needed. check out the old SICP - it does not explain macros, but uses lazy evaluation a lot. – Rainer Joswig Apr 23 '09 at 15:43
2  
@Rainer: Some of us think that pattern matching and algebraic data types are more important to functional programmers than higher-order functions. (That is, if we were sentenced to do without one or the other, we'd profer to program in a first-order language with pattern matching.) Another group think that types play an invaluable role (e.g., see Phil Wadler's "Free Theorems" based only on types). – Norman Ramsey Apr 23 '09 at 18:50
4  
@nominolo: My experience with Scheme has been pretty negative. What Scheme does uniquely well is macros. What ML and Haskell do uniquely well is types. Macros confuse me; types help me. Your mileage will vary. SICP hasn't helped Scheme's cause much. If you already know what's going on, it's a beautiful book. If not, it's hell to learn from. MIT used to use it to weed people out of the CS program (course 6). Now they've switched to another intro entirely. – Norman Ramsey Apr 25 '09 at 22:20
1  
@mikera: The salesmanship is certainly topnotch. And that's a big part of any language's success. – Norman Ramsey Feb 5 '11 at 6:33
show 6 more comments
feedback

Use "Write yourself a Scheme interpreter (in Haskell) in 48 hours" - this way you'll learn something about scheme and haskell in the same run

link|improve this answer
Was about to recommend that myself! – Jared Updike Jun 1 '09 at 18:12
+1 sounds awesome! I'll start right away – MattyW Aug 27 '09 at 12:41
wow he's a beginner , you want to explode his brain or what? – fedvasu Nov 6 '11 at 8:10
feedback

Try harder.

The point of Haskell is that it pushes you into purely functional programming by taking away side effects.

At first when you try Haskell, it seems ridiculous that any software could be written this way. But if you try hard enough and actually write some code, at some point you'll "get it" and see that you actually can get things done in a purely functional way, although it often remains a challenge.

None of the other mentioned languages do this, as they allow you to mix in side-effects quite freely.

Erlang is nice though, being half-pure and concurrent and all.

link|improve this answer
1  
+1 Just for try harder. – FUZxxl Feb 18 '11 at 8:18
1  
+1 from me too for try harder. all the good things in life are hard to get. – mrsteve Jul 19 '11 at 23:56
feedback

This is a fairly subjective question so enter a subjective answer :)

I find that Scheme is usually the easiest way to introduce people to functional programming. It's taught in many colleges and there are many tutorials available online. From my usage it appears to be a simpler language that is easier to grasp than full out Haskell.

link|improve this answer
feedback

Since you are looking for lisp, you might want to try Clojure. It is nice little functional lisp dialect that runs ot the jvm.

I found it much cleaner, simmpler and mose consistent then Haskell, but this is of course subjective.

link|improve this answer
feedback

You say "Gentle", I say "Touretzky"!

link|improve this answer
feedback

Functional programming is essentially about:

  • Learning a style of programming that is side-effect free
  • Learning to write programs using recursion rather than iteration
  • Learning the benefits of having functions as first class objects

A very good case can be made for learning Scheme, although I would argue that Common Lisp is also suitable as a gentler introduction to functional programming. I would recommend learning Common Lisp with Paul Graham's book, ANSI Common Lisp. Common Lisp will grow with you as you become more proficient, whereas with Scheme I find that I tend to be locked into a particular implementation.

With all the (R5RS-compliant) Scheme implementations I've tried (admittedly, a while ago), I've had to use different syntax to include SRFI libraries, and not all Scheme implementations implement all SRFI libraries. This results in not-quite portable code. Things may have changed with R6RS, but I have not yet found a good reason to return to Scheme.

Statically typed functional languages do make a compiler writer's job easier because they are designed to be easier to compile to efficient code. Sometimes the extra syntax helps you identify a coding mistake early, sometimes it is a bit of a hindrance. I also find that a lot of complexity is introduced into the language as a result of providing type-safe language features.

I think I can understand how you chose Haskell. Simple Haskell code looks very beautiful and elegant but as soon as you start using the intermediate to advanced features of the language such as strict evaluation and monads, it starts to look less so.

Haskell is a good language to return to later. SML, OCAML and especially F# are good languages for software engineering. However, to learn functional programming (and for other good reasons), I would recommend Common Lisp and it is not difficult to learn at all.

Peter Seibel, author of "Practical Common Lisp" (available free online), wrote (and I'm paraphrasing a little) that although a very proficient Java programmer he found that while learning Lisp he felt that he was more productive writing Lisp code, despite frequently having to consult Lisp documentation to about various Lisp functions. This may be marketing blurb, but I would agree.

link|improve this answer
feedback

A nice & gentle introduction would be use Perl and grab yourself the Higher Order Perl book.

alt text

The book is also available free to download.

/I3az/

link|improve this answer
feedback

As JaredPar said, this is obviously subjective, but I think SML is a good language to start with. It's 100% functional (unlike something like Python which allows you to do write more or less functional code, but also makes it easy to fall back into the old imperative habits), and I think it helps that it's such a clean and well-defined language. Haskell has a lot of bells and whistles that aren't essential to understanding functional programming, and which may prove distracting.

I'm not sure about Scheme. It's a nice language, and it is very small and simple, but I mentally categorize Lisp and Scheme in their own little world, clearly related to functional programming, but not quite the same family as other functional languages. As such I'm not sure how well it works as an intro to functional programming.

link|improve this answer
Main problem with SML is the incomprehensible error messages. – Jon Harrop May 6 '09 at 11:25
feedback

I found this very gentle introduction to functional programming and more. Computer Science 61A - The Structure and Interpretation of Computer Programs http://webcast.berkeley.edu/course_details_new.php?seriesid=2008-D-26263&semesterid=2008-D

by Brian HARVEY from UC Berkeley. He uses a simplified version of Scheme.

link|improve this answer
My very first introduction to any programming language was via Harvey's Computer Science Logo Style. Now that I look back at it, Logo has many unique characteristics that don't carry over to other functional languages, and the library is toy-sized, but it was still an awesome place to start my life as a programmer. – ephemient Apr 23 '09 at 21:58
feedback

Scala might be a good introduction. It's a functional and object orientated language that compiles down to Java byte codes and has access to all the Java libraries. This is a big win as most functional languages (other than F#) tend to have poor 3rd party library support.

There are plugins for Eclipse and NetBeans to make like easier, if an IDE is your thing.

link|improve this answer
feedback

I first learned functional programming through Scheme, but I'm not sure I'd recommend the experience to someone else if they don't have teachers and exercises available (if you are set on it, you can check out these slides, which were done by students for students, in commemoration of another class that is no longer taught at that university.) Be sure to ask for a lot of help; there's also a nice online tutor linked to on that page which you can do simple exercises on.

Functional programming consists of a lot of parts, and if you don't grasp monads or functors in Haskell, that's OK: you can still the finer parts of recursive and functional thinking without them. If you haven't been learning out of Real World Haskell, I strongly recommend it now. One of the trickier bits is learning both Haskell's type system and functional programming at the same time, which are both fairly novel to programmers.

link|improve this answer
thanx for zombie slides. – fedvasu Nov 6 '11 at 8:27
feedback

I am learning Haskell too, and Ocaml at the mean time. I don't know if you read this book before, but I really liked it and found it very gentle to learn. It's called "Learn you a haskell for greater good", and it's free online: http://learnyouahaskell.com/. Hope this would help.

link|improve this answer
feedback

I personally recommend Lisp. Elisp is accessible via the emacs editor, and Common Lisp is available as an open-source project. Of course, Scheme is a dialect of Lisp. One of the great advantages of Lisp is that it is unambiguous to parse for a human(although the parentheses can scare people).

F# may become the best choice in years to come, but I've found an appallingly wide gap between the "hello world" tutorials and the advanced discussion. I think it's worth keeping an eye on.

Like you, I've found Haskell hard to work with, and I've found the tutorials largely to have a bad attitude. Meh.

Go with Lisp. It's the future. It's been the future for 50 years. ;-)

link|improve this answer
Can you elaborate on "I've found an appallingly wide gap between the "hello world" tutorials and the advanced discussion"? – Jon Harrop Dec 11 '09 at 22:25
@jon: most of the newbie tutorials start with 'hello world', then a few notes on writing a function and so forth. "Day 1" kind of stuff. The more advanced topics assume you know how to use the type system & syntax & inferences, the class system, the match operators, etc. The ML type system is frightfully obscure and the inferencing is hard to understand without exhaustive study, which I'm not prepared to do when a language such as Lisp is ready-to-hand that does similar things without the difficulties. – Paul Nathan Dec 11 '09 at 22:41
1  
I see. May I ask if you have read any of my literature on F# (F# for Scientists, F# for Technical Computing, The F#.NET Journal, anything from www.ffconsultancy.com)? – Jon Harrop Dec 12 '09 at 4:45
1  
Jon: No. I came across it; however it's not on books24x7.com(I have institutional access to that) and I didn't want to spend money. – Paul Nathan Dec 12 '09 at 16:32
feedback

You should try to learn Scheme or a Lisp dialect liek CommonLisp. There is a lot of good book and tutorial with these language.

link|improve this answer
feedback

Here's what I recommend as a starting point, to help you "get" functional programming and why it matters (is useful, and fun): John Hughes's classic paper Why Functional Programming Matters:

From the Introduction (emphasis added by me):


The special characteristics and advantages of functional programming are often summed up more or less as follows. Functional programs contain no assignment statements, so variables, once given a value, never change. More generally, functional programs contain no side-effects at all. A function call can have no effect other than to compute its result. This eliminates a major source of bugs, and also makes the order of execution irrelevant –-- since no side-effect can change the value of an expression, it can be evaluated at any time. This relieves the programmer of the burden of prescribing the flow of control. Since expressions can be evaluated at any time, one can freely replace variables by their values and vice versa – that is, programs are “referentially transparent”. This freedom helps make functional programs more tractable mathematically than their conventional counterparts.

Such a catalogue of “advantages” is all very well, but one must not be surprised if outsiders don’t take it too seriously. It says a lot about what functional programming is not (it has no assignment, no side effects, no flow of control) but not much about what it is. The functional programmer sounds rather like a medieval monk, denying himself the pleasures of life in the hope that it will make him virtuous. To those more interested in material benefits, these “advantages” are not very convincing.

Functional programmers argue that there are great material benefits --– that a functional programmer is an order of magnitude more productive than his conventional counterpart, because functional programs are an order of magnitude shorter. Yet why should this be? The only faintly plausible reason one can suggest on the basis of these “advantages” is that conventional programs consist of 90% assignment statements, and in functional programs these can be omitted! This is plainly ridiculous. If omitting assignment statements brought such enormous benefits then FORTRAN programmers would have been doing it for twenty years. It is a logical impossibility to make a language more powerful by omitting features, no matter how bad they may be.

Even a functional programmer should be dissatisfied with these so-called advantages, because they give him no help in exploiting the power of functional languages. One cannot write a program which is particularly lacking in assignment statements, or particularly referentially transparent. There is no yardstick of program quality here, and therefore no ideal to aim at. Clearly this characterisation of functional programming is inadequate. We must find something to put in its place –-- something which not only explains the power of functional programming, but also gives a clear indication of what the functional programmer should strive towards.


An analogy is then drawn with the “no GOTO!” arguments in favor of structured programming --– and the conclusion is that it is its modularity, not its lack of GOTO, that gives structured programming its advantage. The rest of the paper explores the modularity advantages provided by higher-order functions and lazy evaluation.

I heartily recommend this 25-year old paper. I guarantee that it is an eye-opener, no matter how familiar you are with functional programming and programming-language design. And IMHO it is a good intro to functional programming: there are simple examples that matter because they show you what functional programming is all about.

link|improve this answer
feedback

Python has functional capabilities -- it's "functional lite".

link|improve this answer
But it's hard to find any good examples to learn from. – Zifre Apr 23 '09 at 0:54
2  
+1 - Still learning Python, but I love the way it allows functional or object-oriented programming. And I'm starting to see what all the fuss about dynamic typing and succinctness is all about. – duffymo Apr 23 '09 at 1:29
4  
I think FP in Scheme never sunk in for me until I understood FP in Python. Re: good examples: gnosis.cx/publish/programming/charming_python_13.html and chapter 16 and 19 of the same book (change those numbers in the URL), as well as gnosis.cx/TPiP/chap1.txt which covers a functional style in Python. gnosis.cx/TPiP/appendix_a.txt (search for Functional Programming) is quite excellent. – Jared Updike Jun 1 '09 at 19:16
1  
I completely disagree. Since Python have its own advantage, it is too "imperative" to learn functional paradigm. Everytime you have to be sure that you are not thinking in the wrong way. It is like learning procedural paradigm in Smalltalk or imperative paradigm in Scheme: still possible but not a good idea. Haskell is a good way, because you cannot escape the paradigm. Yes, it is more difficult to dive into FP completely... but at the end, it is also more rewarding. – Benoît Fraikin Jul 13 '11 at 17:23
2  
@S.Lott I still don't agree with you. My experience says that it is highly possible to be gently introduced to FP without statement and other imperative feature. This is also the way chosen in SICP. Therefore I don't agree with the fact that it is mandatory to have imperative feature to learn gently FP. This is my point. And I don't think Python is great to learn FP. But I don't you to make these replies some personal fight. So I will not go farther. Sorry. – Benoît Fraikin Jul 19 '11 at 13:25
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.