Log In | Sign Up | Help
Upload_transparent

Thinking in Erlang

Twitter Facebook
  • Send This
  • Add_to_favs_transparent
  • Embed
  • Download
  • Flag
  • Add to Favorites

Scribd requires Javascript. Please enable Javascript in your browser.

Value This
Doc
Scribd
Average
     
Pages: 31 43
Words: 8734 13640
Characters: 48445 81678
Lines: 621 623
     
     
Letters per word: 5.55 5.99
Words per line: 14.06 21.89
Words per page: 281.74 317.21

Document Information

28,361 Reads | 26 Likes | 3 Comments | 33 Favorites

Added By
Description

No description. Ask the publisher to add a description

Pdf_16x16 31 Pages


Date Added

05/04/2007

Category

Uncategorized.

Tags
Groups
Awards

Flame Hot

Copyright

Attribution Non-commercial

More info »

 

Comments

Login or Signup to Leave a Comment


autophile 3 months ago

In Figures 13 and 14, there is a bug:

factorial(0) -> 1. should be factorial(0) -> 1;

factorial(0, Acc) ->
Acc,
factorial(N, Acc) ->...

needs to be

factorial(0, Acc) ->
Acc;
factorial(N, Acc) ->...

abesto 11 months ago

This is exactly what I needed, thanks a lot!
Also, if you (the author) ever read this, how about replacing 'RIGHT HEADER HERE' with something more descriptive? ;)

Grant over 2 years ago

Great intro document! Thanks for writing and posting this.

Two minor things if I may:

I think there is a minor error on page 17, figure 15. You call function extractFromTuple but then define function extractFromTable.

Also it would be really instructive to see a simple coded example of the last section. ( Server, connections, counter process and supervisor ).

Thanks again for posting this great intro.