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?
feedback
|
|
Haskell is indeed an ambitious place to start. Here's some commentary on functional languages:
Overall recommendation: Have another go at Haskell via Helium, and if that doesn't help, try Standard ML. | |||||||||||||||||||||
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 | |||||||
|
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. | |||||||||
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. | ||||
|
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. | |||
|
feedback
|
|
Functional programming is essentially about:
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. | |||
|
feedback
|
|
A nice & gentle introduction would be use Perl and grab yourself the Higher Order Perl book.
The book is also available free to download. /I3az/ | |||
|
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. | |||
|
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. | |||
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. | |||
|
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. | |||
|
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. | |||
|
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. ;-) | |||||||||||||
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. | |||
|
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 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. | |||
|
feedback
|
|
Python has functional capabilities -- it's "functional lite". | |||||||||||||||||||
feedback
|
