Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've recently found myself getting more and more interested in Erlang.

I've purchased a book (Programming in Erlang) and started reading up on the basics. Reading books is time consuming so I am looking to shortcut this a bit and go back to the book later.

What I lack is a good introductory tutorial. Kind of like, hands on, this is what you need to get started in Erlang, these are best practices, this is how you organize code and this is how you do a small project.

I've googled this topic extensively and haven't had much luck. ;)

Update, 2011-04-22

Just a small update since this question keeps getting lots of views still. I haven't written any large chunks of code with Erlang thus far and that's probably the number one problem. I need to do stuff to get into it.

For a primer, any of the links below work and I can also recommend checking out a software which is written in Erlang to get a feel for it. It helps tremendously if you need to add a feature to said application and start tinkering with.

So for example, we've been using a lot of CouchDB and I actually managed to extend part of the code handling its view groups with a feature. I haven't asked anyone to pull my changes or blogged about since I'm still testing it, but it seems to actually work and I'm pretty excited.

share|improve this question
1  
learing Erlang is going to be time consuming, there are no short cuts, if you can't take the time/effort to focus on "the" erlang book then you might want consider a different environment, erlang isn't for the impatient – Jarrod Roberson Jun 11 '10 at 21:19
Appreciate the comment, I guess I figured that out too. :) I'm in the midst of a small project to do something useful outside of a 'hello world'. – Till Jun 17 '10 at 1:40
Thanks @casperOne for closing my question. [Note, sarcasm!] – Till Jul 17 '12 at 0:47
@Till you're welcome. Shopping list questions are no longer appropriate for Stack Overflow. – casperOne Jul 17 '12 at 1:34

closed as not constructive by casperOne Jun 12 '12 at 11:47

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

The bible is Programming Erlang: Software for a Concurrent World, written by the creator of Erlang, Joe Armstrong. Code for the book is available here.

share|improve this answer

I used this to start,

Then tried this (PDF).

and eventually bought this.

They are all adequate to get started.

You need to browse the reference manual for a fuller overview of what is available.

The real key is to sit down and start writing stuff, until the erlang philosophy clicks in your head.

good luck.

Since then, I found this link. It is useful, if you want a light tutorial driven intro.

I just ran into this link.

share|improve this answer
Not to be stubborn, but I am very well familiar with RTFM and STFW. :) I have those links bookmarked and I bought the book already. – Till Sep 21 '08 at 14:11
there is no substitution for reading everything, twice even, and trying to do things over and over until you "get" the paradigm that is functional programming – Jarrod Roberson Jun 11 '10 at 21:20

Try http://learnyousomeerlang.com - learn you some erlang inspired from the haskell one

share|improve this answer
Thanks! Appreciate the answer! – Till Dec 12 '09 at 16:17
learnyousomeerlang.com is very well written and provides a full tour of the language and major OTP features. A great beginner's guide to getting the most from Erlang. – afternoon Apr 5 '11 at 14:06

This one is a very simple tutorial, but you can learn a lot :) http://spawnlink.com/ . Give it a try.

share|improve this answer

A recent blog post that features links to a number of Erlang blogs: http://adam.blog.heroku.com/past/2008/9/27/erlang/

I also recommend Programming Erlang: Software for a Concurrent World which I recently read.

share|improve this answer

Slides

I had the opportunity to go to session about Erlang at the Barcamp in Berlin.

Here are the slides (sans commentary): http://www.slideshare.net/guesta3202/erlang-introduction-bcberlin3-presentation

(All credit to Florian Ebeling.)

Screencast

I've found something else in the meantime:

http://www.pragprog.com/screencasts/v-kserl/erlang-in-practice

Screencast, starting with basics. I have not yet downloaded them but I will and also update this question.

Online tutorial

The other day I discovered learnyousomeerlang.com. A beginner tutorial for everyone who's new to this language.

share|improve this answer

Partial answer: for the directory/file structure guidelines you can refer to this question

share|improve this answer

It looks like a community site has been set up as a repository for Erlang tutorials, articles, and cookbook entries at trapexit.org.

I recognize that you are just asking for tutorials, but the web looks pretty thin right now on good Erlang material. Posting some back might save others from going through as much aggravation as you are.

share|improve this answer
ya. this is a very good site – EvilTeach Apr 27 '12 at 0:37

I started with reading Mitchell Hashimoto's Spawn Link , and I've yet to see a better starting point for someone who wants to quickly dive in.

Later on I progressed to Joe Armstrong's book "Programming Erlang: Software for a Concurrent World". Another book, "Erlang Programming" by Cesarini and Thompson, was recently published and I slightly prefer it to Joe's book, but either are a good introduction.

"Learn You Some Erlang" is a promising yet incomplete tutorial.

My advice though is to just blast through Joe's book, it really won't take all that long. You'll end up saving time in the long run since you'll spend less time stumbling around on the basics.

share|improve this answer

Wanted to get my thoughts out for others who are trying to learn and use Erlang having a similar career background as mine. All along in my career, i've learnt and applied several "procedural" languages (PP) starting with C,C++,Python,Lua,C# and some java. Once you've understood the basics through one of these languages it is easy to learn the other since they are all based on same fundamental principles of programming language design.

Now Erlang basically a Functional Programming (FP) language was some thing I was not exposed or used to before in my career. FP radically requires a different style of thinking from PP. So if this is your first FP like myself, don't buy a book that teaches you the Erlang (or say other FP) language as it will not get you far. As you to start to do serious programs with FP after learning some language basics ,your brain will naturally resist this different style of thinking and you'll either feel hard to continue and/or quit. You'll feel very warm and happy along with others to bash FP/Erlang.

To be comfortable and learn FP naturally it is better to understand the foundation of this FP which is lambda calculus. Lambda may look even weird on first sight, feel dizzy for quite a while but once you get a hang of this and solve couple of lambda calculus problems you'll now find your style of FP thinking. So my suggestion in one line is

Start with Lambda Calculus if this is your first functional programming.

share|improve this answer
My approach to most things I've learned has never been theory. For example, I didn't do to well with math in school. But nowdays I work with with databases and help shape algorithms for systems which analyze data. Lambda calculus to get started wouldn't work out for me. Of course I don't mind learning the "theory" once I found an angle for myself. – Till Dec 3 '11 at 17:14

I have some more links which I found very enlightening about Erlang and they also emphasize my my approach: real world applications. I just don't like doing tutorials which introduce me to a language by (IMHO) creating not so useful things.

share|improve this answer

I found "Seven Languages in Seven Weeks" by Bruce Tate to be particularly well-written for getting the feel of the languages presented. Erlang is one of the seven.

share|improve this answer
Nice, thanks for adding this, I'll have a look! – Till Apr 21 '11 at 22:27

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