16

What are some good links for diving into Erlang and functional programming in general?

Kara
  • 6,115
  • 16
  • 50
  • 57
semmons99
  • 1,134
  • 1
  • 9
  • 13
  • possible duplicate of [What is the best way to learn Erlang?](http://stackoverflow.com/questions/1017017/what-is-the-best-way-to-learn-erlang) – nawfal Sep 17 '15 at 21:56

4 Answers4

9

this might be a good one to look at http://learnyousomeerlang.com/

hashpipe
  • 305
  • 3
  • 16
7

Here's the first half of Concurrent Programming in Erlang [PDF], free.

Craig Stuntz
  • 125,891
  • 12
  • 252
  • 273
6

I think the language itself is surprisingly easy to learn. I recommend http://www.erlang.org/download/getting_started-5.4.pdf

eliego
  • 2,279
  • 2
  • 18
  • 22
3

Let me suggest that Erlang is not necessarily typical of "functional programming in general". If you want a good balance, I'd combine reading some of the Erlang-specific sources already cited (or Joe Armstrong's book, Programming Erlang: Software for a Concurrent World) with some of the tutorial links from the Haskell web site.

joel.neely
  • 30,725
  • 9
  • 56
  • 64
  • 2
    why? could you please try to describe what makes it atypical? I'd be very interested in that. – akavel Mar 29 '11 at 13:12