Share This Document
Copy and Paste URL
Page
No description. Ask the publisher to add a description
31 Pages
Date Added |
05/04/2007 |
Category |
Uncategorized. |
Tags |
|
Groups |
|
Awards |
|
Copyright |
|
More info » |
|
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? ;)
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.
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) ->...