October 2014
Intermediate to advanced
280 pages
7h 20m
English
In this book, I show a terminal session like this:
| | $ echo Hello, World |
| | Hello, World |
The terminal prompt is the dollar sign, and the stuff you type follows. (On your system, the prompt will likely be different.) Output from the system is shown without highlighting.
To test that your Elixir installation was successful, let’s start an interactive Elixir session. At your regular shell prompt, type iex.
| | $ iex |
| | Erlang/OTP 17 [erts-6.0] [source] [64-bit] [smp:4:4] [async-threads:10] |
| | [hipe] [kernel-poll:false] |
| | |
| | Interactive Elixir (x.y.z) - press Ctrl+C to exit (type h() ENTER for help) |
| | iex(1)> |
(The various version numbers you see will likely be different—I won’t bother to show them on subsequent ...
Read now
Unlock full access