As the future of code says, in order to take full advantage of multicore, concurrency becomes the trend that will become the future, for concurrent programming support, Erlang is really the best choice, Erlang is still relatively small in the country, the classic books are relatively much less, finally selected "Erlang Programming 2nd Edition" As my first book on the basics of Erlang.
Erlang Official website: http://www.erlang.org/
Erlang Installation:
Available for Ubuntu and Debian distributions: Apt-get install Erlang;
For other UNIX and Linux platforms, you can download the source code and build it manually, as follows:
Download:http://www.erlang.org/download.html
1. Extract source code: $ tar zxf otp_src_17.3.tar.gz2. $ cd opt_src_17.33. $./configure4. $ make5. $ make Install
Erlang is a functional programming language designed primarily to solve problems such as concurrency, distributed, fault-tolerant, extensible, and soft real-time systems from the bottom up.
Since there has been no prior contact with functional programming, it is easy to step through the sequence of programming.
Erlang enters the shell programming environment very simple, similar to Python, in the terminal directly enter the ERL, exit can use CTRL + C and then enter a method, but this may lead to some data destruction, it is best to use Q ().
Erlang Program Design (2nd edition) reading notes (i)