Linked by Thom Holwerda on Wed 19th Jul 2006 16:29 UTC, submitted by anonymous
Permalink for comment 144990
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 06/18/13 22:33 UTC
Linked by Anonymous on 06/18/13 22:26 UTC
Linked by Thom Holwerda on 06/18/13 22:25 UTC
Linked by Thom Holwerda on 06/18/13 17:45 UTC
Linked by Thom Holwerda on 06/18/13 17:32 UTC, submitted by poundsmack
Linked by Thom Holwerda on 06/17/13 17:58 UTC
Linked by Thom Holwerda on 06/17/13 17:52 UTC
Linked by Thom Holwerda on 06/14/13 21:03 UTC
Linked by Thom Holwerda on 06/14/13 20:46 UTC
Linked by Thom Holwerda on 06/14/13 17:32 UTC
More News »
Sponsored Links



Member since:
2005-07-07
ok, it's not haskell, but i hope it helps:
Erlang is a general-purpose concurrent programming language and runtime system. the sequential subset of Erlang is a functional language, with strict evaluation, single assignment, and dynamic typing. It was designed in the company Ericsson to support distributed, fault-tolerant, soft-real-time, non-stop applications. it supports hot swapping so code can be changed without stopping the system/program.
real word examples
a simple ftp server, ftp client, mini-os, etc.:
http://www.erlang.org/examples/examples-2.0.html
a simple mines game, time server, ftpd, find, wc, etc.
http://www.erlang.org/examples/klacke_examples/index.html
a simple telnet client, tetris, etc.
http://www.erlang.org/examples/small_examples/index.html
as for tutorials:
4days introduction to Erlang with examples
http://www.erlang.org/course/course.html
part one of the Erlang book
http://www.erlang.org/download/erlang-book-part1.pdf
Joe Armstrong's excellent PhD thesis
http://www.sics.se/~joe/thesis/armstrong_thesis_2003.pdf
the distribution of the language together with libraries and a real-time distributed database (Mnesia) is known as the OTP [Open Telecom Platform]. to download it, go to http://www.erlang.org/download.html
last but not least, the erlang video ;-D
http://video.google.com/videoplay?docid=-5830318882717959520
Edited 2006-07-20 19:49